mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
Use connect_error event
This commit is contained in:
parent
59ebe134f1
commit
5bd3184ebf
@ -46,9 +46,9 @@ export default {
|
|||||||
transports: ['websocket']
|
transports: ['websocket']
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!socket.connected) {
|
socket.on("connect_error", (err) => {
|
||||||
console.error("Failed to connect to the backend")
|
console.error(`Failed to connect to the backend. Socket.io connect_error: ${err.message}`);
|
||||||
}
|
});
|
||||||
|
|
||||||
socket.on('info', (info) => {
|
socket.on('info', (info) => {
|
||||||
this.info = info;
|
this.info = info;
|
||||||
|
Loading…
Reference in New Issue
Block a user