Fixed only "AUTH failed" error message would redirect to 403

This commit is contained in:
Cheng-Han, Wu 2016-01-31 15:33:25 -06:00
parent 2eec0ae35d
commit eba84527c3

View file

@ -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);