Procházet zdrojové kódy

Fixes case where pending session promise is not awaited

main
Ramin Tadayon před 11 měsíci
rodič
revize
905c6ce159
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 79D60DDE3DFB95F5
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/plus/gk/account/subscriptionService.ts

+ 1
- 1
src/plus/gk/account/subscriptionService.ts Zobrazit soubor

@ -626,7 +626,7 @@ export class SubscriptionService implements Disposable {
@gate()
@debug()
private async ensureSession(createIfNeeded: boolean, force?: boolean): Promise<AuthenticationSession | undefined> {
if (this._sessionPromise != null && this._session === undefined) {
if (this._sessionPromise != null) {
void (await this._sessionPromise);
}

Načítá se…
Zrušit
Uložit