mirror of https://github.com/status-im/codimd.git
Fixed only "AUTH failed" error message would redirect to 403
This commit is contained in:
parent
2eec0ae35d
commit
eba84527c3
|
@ -1175,7 +1175,8 @@ socket.on('info', function (data) {
|
|||
});
|
||||
socket.on('error', function (data) {
|
||||
console.error(data);
|
||||
location.href = "./403";
|
||||
if (data.message.indexOf('AUTH failed') === 0)
|
||||
location.href = "./403";
|
||||
});
|
||||
socket.on('disconnect', function (data) {
|
||||
showStatus(statusType.offline);
|
||||
|
|
Loading…
Reference in New Issue