aboutsummaryrefslogtreecommitdiff
path: root/cli/onionshare_cli/web/chat_mode.py
diff options
context:
space:
mode:
authorSaptak S <saptak013@gmail.com>2021-11-14 21:06:47 +0530
committerSaptak S <saptak013@gmail.com>2021-11-14 21:06:47 +0530
commit2a7c3d68671bf4a85d3c67f9e710e6a6228bb81a (patch)
tree68d0eea3f3eedaa5ec27a2c32eefba161a17264c /cli/onionshare_cli/web/chat_mode.py
parentf4ade1ba8d9529893c6a84e4d335f31722eb59c8 (diff)
downloadonionshare-2a7c3d68671bf4a85d3c67f9e710e6a6228bb81a.tar.gz
onionshare-2a7c3d68671bf4a85d3c67f9e710e6a6228bb81a.zip
Renames message event to chat_message
Diffstat (limited to 'cli/onionshare_cli/web/chat_mode.py')
-rw-r--r--cli/onionshare_cli/web/chat_mode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/onionshare_cli/web/chat_mode.py b/cli/onionshare_cli/web/chat_mode.py
index b8053e0c..5f2e30f5 100644
--- a/cli/onionshare_cli/web/chat_mode.py
+++ b/cli/onionshare_cli/web/chat_mode.py
@@ -131,7 +131,7 @@ class ChatModeWeb:
"""Sent by a client when the user entered a new message.
The message is sent to all people in the server."""
emit(
- "message",
+ "chat_message",
{"username": session.get("name"), "msg": message["msg"]},
broadcast=True,
)