@etsoo/appscript 1.6.15 → 1.6.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/app/CoreApp.js +1 -1
- package/lib/mjs/app/CoreApp.js +1 -1
- package/package.json +1 -1
- package/src/app/CoreApp.ts +1 -1
package/lib/cjs/app/CoreApp.js
CHANGED
package/lib/mjs/app/CoreApp.js
CHANGED
package/package.json
CHANGED
package/src/app/CoreApp.ts
CHANGED
|
@@ -2367,7 +2367,7 @@ export abstract class CoreApp<
|
|
|
2367
2367
|
*/
|
|
2368
2368
|
async tryLogin(data?: AppTryLoginParams) {
|
|
2369
2369
|
// Check status
|
|
2370
|
-
if (this._isTryingLogin) return false;
|
|
2370
|
+
if (this._isTryingLogin || this.deviceId === "") return false;
|
|
2371
2371
|
this._isTryingLogin = true;
|
|
2372
2372
|
|
|
2373
2373
|
return true;
|