We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bea2a5 commit c16234bCopy full SHA for c16234b
src/sdkBase.ts
@@ -189,6 +189,11 @@ export abstract class SdkBase {
189
}
190
191
public isLoginRequired() {
192
+ const identity = this._identity ?? this.getIdentityNoInit();
193
+ // if identity temporarily unavailable, login is not required
194
+ if (this.temporarilyUnavailable(identity)) {
195
+ return false;
196
+ }
197
return !this.isIdentityAvailable();
198
199
0 commit comments