From 0ceeb43abcb99c625ac35585cb9836a8cb47c7fc Mon Sep 17 00:00:00 2001 From: Eric Lay Date: Thu, 31 Jul 2025 19:56:36 -0500 Subject: [PATCH] Update web_app.py --- web_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}")