diff options
author | Renard | 2020-03-09 19:25:26 -0300 |
---|---|---|
committer | Renard | 2020-03-09 19:25:26 -0300 |
commit | 0530339dd1b45cf187e183b22cf1cbcb90503a08 (patch) | |
tree | 04e86c59f5f540a205a4f00dfea535b3e21fa5e5 /src | |
parent | ac07257e1526a6fd658a67427555dc6951309f9e (diff) | |
download | bairadio-app-0530339dd1b45cf187e183b22cf1cbcb90503a08.tar.gz bairadio-app-0530339dd1b45cf187e183b22cf1cbcb90503a08.tar.xz bairadio-app-0530339dd1b45cf187e183b22cf1cbcb90503a08.zip |
Chat: mensajes enviados sin color
Diffstat (limited to 'src')
-rw-r--r-- | src/Chat.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Chat.js b/src/Chat.js index 84e1193..54178f2 100644 --- a/src/Chat.js +++ b/src/Chat.js @@ -77,7 +77,7 @@ class Chat extends Component { if (chatMessage === "") { return; } - this.client.send("MSG:1:" + chatMessage); + this.client.send("MSG:0:" + chatMessage); this.addMessage(chatMessage, "black", true); this.setState({ chatMessage: "" }); } |