diff --git a/src/subscription/UpgradeSubscriptionWizard.ts b/src/subscription/UpgradeSubscriptionWizard.ts index 4c89e0bd9d7e..78e53d18e5d2 100644 --- a/src/subscription/UpgradeSubscriptionWizard.ts +++ b/src/subscription/UpgradeSubscriptionWizard.ts @@ -73,7 +73,7 @@ export type UpgradeSubscriptionData = { export async function showUpgradeWizard(logins: LoginController, acceptedPlans: AvailablePlanType[] = NewPaidPlans, msg?: TranslationText): Promise { const [customer, accountingInfo] = await Promise.all([logins.getUserController().loadCustomer(), logins.getUserController().loadAccountingInfo()]) - if (!(await locator.appStorePaymentPicker.shouldEnableAppStorePayment(getPaymentMethodType(accountingInfo)))) { + if (isIOSApp() && !(await locator.appStorePaymentPicker.shouldEnableAppStorePayment(getPaymentMethodType(accountingInfo)))) { Dialog.message("notAvailableInApp_msg") return }