From 7db503b13b4f50a5c273cb7e0d6692002361e1ea Mon Sep 17 00:00:00 2001 From: Fabien O'Carroll Date: Mon, 9 Dec 2019 14:29:25 +0200 Subject: [PATCH] Fixed local webhooks when using localhost urls no-issue When using localhost urls the call to `create` will error and end in teh catch block - so we need to use the environment variable there, too. Introduced in 0149dd8f --- ghost/members-api/lib/stripe/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ghost/members-api/lib/stripe/index.js b/ghost/members-api/lib/stripe/index.js index fa721d6fff..5a59e72c08 100644 --- a/ghost/members-api/lib/stripe/index.js +++ b/ghost/members-api/lib/stripe/index.js @@ -64,6 +64,7 @@ module.exports = class StripePaymentProcessor { }); this._webhookSecret = process.env.WEBHOOK_SECRET || webhook.secret; } catch (err) { + this._webhookSecret = process.env.WEBHOOK_SECRET; this.logging.warn(err); } debug(`Webhook secret set to ${this._webhookSecret}`);