This commit is contained in:
Dessalines 2021-07-31 15:41:57 -04:00
commit a4300d9624
1 changed files with 2 additions and 2 deletions

View File

@ -395,7 +395,7 @@ export class Navbar extends Component<NavbarProps, NavbarState> {
}
return;
} else if (msg.reconnect) {
toast(i18n.t("websocket_reconnected"), "success");
console.log(i18n.t("websocket_reconnected"));
WebSocketService.Instance.send(
wsClient.userJoin({
auth: authField(),
@ -542,7 +542,7 @@ export class Navbar extends Component<NavbarProps, NavbarState> {
websocketEvents() {
let msg = i18n.t("websocket_disconnected");
WebSocketService.Instance.closeEventListener(() => {
toast(msg, "danger");
console.error(msg);
});
}