From 6914b18b37ca67e7f6138204b08e36c005fee91d Mon Sep 17 00:00:00 2001 From: PuPha Date: Tue, 17 Oct 2023 12:12:11 +0700 Subject: [PATCH] Remove isAppCenter --- lib/service/iap_service.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/service/iap_service.dart b/lib/service/iap_service.dart index 0a3963d0b..4f070ec39 100644 --- a/lib/service/iap_service.dart +++ b/lib/service/iap_service.dart @@ -286,8 +286,7 @@ class IAPServiceImpl implements IAPService { @override Future isSubscribed() async { final jwt = _configurationService.getIAPJWT(); - return (jwt != null && jwt.isValid(withSubscription: true)) || - await isAppCenterBuild(); + return (jwt != null && jwt.isValid(withSubscription: true)); } Future _cleanupPendingTransactions() async {