Kaynağa Gözat

Fixes case where pending session promise is not awaited

main
Ramin Tadayon 11 ay önce
ebeveyn
işleme
905c6ce159
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 79D60DDE3DFB95F5
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      src/plus/gk/account/subscriptionService.ts

+ 1
- 1
src/plus/gk/account/subscriptionService.ts Dosyayı Görüntüle

@ -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);
}

Yükleniyor…
İptal
Kaydet