Ver a proveniência

Fixes case where pending session promise is not awaited

main
Ramin Tadayon há 11 meses
ascendente
cometimento
905c6ce159
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 79D60DDE3DFB95F5
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      src/plus/gk/account/subscriptionService.ts

+ 1
- 1
src/plus/gk/account/subscriptionService.ts Ver ficheiro

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

Carregando…
Cancelar
Guardar