We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eabb29 commit 1f18179Copy full SHA for 1f18179
src/plus/gk/account/subscriptionService.ts
@@ -757,15 +757,16 @@ export class SubscriptionService implements Disposable {
757
} catch (ex) {
758
Logger.error(ex, scope);
759
void env.openExternal(this.container.getGkDevUri('purchase', query));
760
- take(
761
- window.onDidChangeWindowState,
762
- 2,
763
- )(e => {
764
- if (e.focused && this._session != null) {
765
- void this.checkInAndValidate(this._session, { force: true });
766
- }
767
- });
768
}
+
+ take(
+ window.onDidChangeWindowState,
+ 2,
+ )(e => {
+ if (e.focused && this._session != null) {
+ void this.checkInAndValidate(this._session, { force: true });
+ }
769
+ });
770
771
await this.showAccountView();
772
0 commit comments