We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ea5191 commit 7a46c9fCopy full SHA for 7a46c9f
1 file changed
public/js/index.js
@@ -2201,20 +2201,20 @@ socket.on('info', function (data) {
2201
console.error(data);
2202
switch (data.code) {
2203
case 403:
2204
- location.href = "./403";
+ location.href = serverurl + "/403";
2205
break;
2206
case 404:
2207
- location.href = "./404";
+ location.href = serverurl + "/404";
2208
2209
case 500:
2210
- location.href = "./500";
+ location.href = serverurl + "/500";
2211
2212
}
2213
});
2214
socket.on('error', function (data) {
2215
2216
if (data.message && data.message.indexOf('AUTH failed') === 0)
2217
2218
2219
var retryOnDisconnect = false;
2220
var retryTimer = null;
0 commit comments