Browse Source

Validates expired subscriptions

main
Eric Amodio 2 years ago
parent
commit
0af11887e4
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      src/premium/subscription/subscriptionService.ts

+ 4
- 1
src/premium/subscription/subscriptionService.ts View File

@ -413,7 +413,10 @@ export class SubscriptionService implements Disposable {
const cc = Logger.getCorrelationContext();
const session = await this.ensureSession(false);
if (session == null) return;
if (session == null) {
this.changeSubscription(this._subscription);
return;
}
try {
await this.checkInAndValidate(session);

Loading…
Cancel
Save