소스 검색

Fixes case where pending session promise is not awaited

main
Ramin Tadayon 11 달 전
부모
커밋
905c6ce159
No known key found for this signature in database GPG 키 ID: 79D60DDE3DFB95F5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/plus/gk/account/subscriptionService.ts

+ 1
- 1
src/plus/gk/account/subscriptionService.ts 파일 보기

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

불러오는 중...
취소
저장