Skip to content

Commit 3190bb7

Browse files
authored
Merge pull request #170 from shayan-deriv/shayan/FEQ-2389/implement-auto-login-to-p2p
Shayan/feq 2389/implement auto login to p2p
2 parents e44acd3 + 6e76bc6 commit 3190bb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/localstorage-sync.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
if (localStorage.getItem(message.data.key) !== message.data.value) {
3232
let accounts = {};
3333
let tokens = [];
34-
const data = message.data.value;
34+
const data = JSON.parse(message.data.value);
3535
Object.keys(data).map(loginid => {
3636
const token = data[loginid]['token'] ?? '';
3737
accounts[loginid] = token;

0 commit comments

Comments
 (0)