Explorar el Código

Fixes case where pending session promise is not awaited

main
Ramin Tadayon hace 11 meses
padre
commit
905c6ce159
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 79D60DDE3DFB95F5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/plus/gk/account/subscriptionService.ts

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

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

Cargando…
Cancelar
Guardar