error handling for multiple device login
This commit is contained in:
parent
5425e9efa7
commit
c93ea8a5b1
@ -2121,7 +2121,14 @@
|
|||||||
render.userOrders();
|
render.userOrders();
|
||||||
proxy.secret.then(_ => null).catch(_ => null);
|
proxy.secret.then(_ => null).catch(_ => null);
|
||||||
showPage(window.location.hash);
|
showPage(window.location.hash);
|
||||||
}).catch(error => notify(error.data, 'error'))
|
}).catch(error => {
|
||||||
|
if (error.data === 'Invalid request signature! Re-login if this error occurs frequently') {
|
||||||
|
proxy.clear()
|
||||||
|
location.reload()
|
||||||
|
}
|
||||||
|
else
|
||||||
|
notify(error.data, 'error')
|
||||||
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
hideProcess('login_button_wrapper')
|
hideProcess('login_button_wrapper')
|
||||||
})
|
})
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user