Skip to content
This repository was archived by the owner on Sep 2, 2023. It is now read-only.

Commit eaf9cf5

Browse files
authored
Merge pull request #631 from nazaninreihani/token-issue
Token of undefined issue in login
2 parents 8deb367 + 93c220d commit eaf9cf5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

www/boot.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
var account = objURL['acct' + i],
3232
token = objURL['token' + i],
3333
currency = objURL['cur' + i];
34-
if (!account || !token || !currency) break;
35-
accounts.push({ account: account, token: token, currency : currency, });
34+
if (!account || !token) break;
35+
accounts.push({ account: account, token: token, currency : currency || '', });
3636
}
3737

3838
return accounts;

0 commit comments

Comments
 (0)