Merge pull request #16126 from mozilla/update-contentful-manager-check

fix(auth): skip contentful if manager not set
This commit is contained in:
Reino Muhl 2023-11-29 14:16:46 -05:00 коммит произвёл GitHub
Родитель e3896f37e5 025769b7f5
Коммит 8a695720fa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -232,7 +232,9 @@ export class StripeHelper extends StripeHelperBase {
this.webhookSecret = config.subscriptions.stripeWebhookSecret;
this.taxIds = config.subscriptions.taxIds;
this.currencyHelper = Container.get(CurrencyHelper);
if (Container.has(ContentfulManager)) {
this.contentfulManager = Container.get(ContentfulManager);
}
// Initializes caching
this.initRedis();