Merge pull request #3252 from pangeachat/3251-7-day-free-trial
chore: if user is in trial window, always treat them as subscribed
This commit is contained in:
commit
d247ec3cb7
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ class SubscriptionController extends BaseController {
|
|||
final bool hasSubscription =
|
||||
currentSubscriptionInfo?.currentSubscriptionId != null;
|
||||
|
||||
return hasSubscription;
|
||||
return hasSubscription || _userController.inTrialWindow();
|
||||
}
|
||||
|
||||
bool _isInitializing = false;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue