Remove websocket connection messages. Fixes #355

This commit is contained in:
Dessalines 2021-07-31 10:30:08 -04:00 committed by Dessalines
parent 6994a3a691
commit 440d0f9156
1 changed files with 2 additions and 2 deletions

View File

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