Skip to content

Commit

Permalink
Remove isAppCenter
Browse files Browse the repository at this point in the history
  • Loading branch information
ppupha committed Oct 17, 2023
1 parent 75cc9c1 commit 6914b18
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/service/iap_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,7 @@ class IAPServiceImpl implements IAPService {
@override
Future<bool> 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 {
Expand Down

0 comments on commit 6914b18

Please sign in to comment.