diff --git a/web_app.py b/web_app.py index 9a78261..6e73202 100644 --- a/web_app.py +++ b/web_app.py @@ -18,7 +18,7 @@ def incoming(): if not user or not text: return jsonify({"error": "Invalid data"}), 400 - msg = f"[CHATBOX] {user}: {text}" + msg = f"[CHAT] {user}: {text}" try: r.publish("chatbox_to_irc", msg) print(f"[REDIS] Published: {msg}")