summaryrefslogtreecommitdiff
path: root/scripts/gui/chat.js
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2022-07-27 14:09:42 -0400
committerKyle Gunger <kgunger12@gmail.com>2022-07-27 14:09:42 -0400
commite1af055dc8bcb2676969b9d57b098e6781df2b01 (patch)
treebad497845bfa34f3c4b2dce576ce37fa130f0419 /scripts/gui/chat.js
parentd0ec435399ff3308be1b79ad67e37321b9a97b8e (diff)
[chat] Fix chat bug
Diffstat (limited to 'scripts/gui/chat.js')
-rw-r--r--scripts/gui/chat.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gui/chat.js b/scripts/gui/chat.js
index 31cc460..8960461 100644
--- a/scripts/gui/chat.js
+++ b/scripts/gui/chat.js
@@ -46,7 +46,7 @@ class Chat {
d.className = "chat-text";
- this.chats[dat.id] = {name: dat.name, e: d, btn: b};
+ this.chats[dat.id] = {name: dat.name, id: dat.id, e: d, btn: b};
if(dat.follow)
this.switchChannel(dat.id)
@@ -91,7 +91,7 @@ class Chat {
if(str == "")
return;
this.chatInput.value = "";
- this.socket.send("chat", {channel: this.getActiveChannel().name, text: str});
+ this.socket.send("chat", {channel: this.getActiveChannel().id, text: str});
}
recieveMessage (msg)