1
0
Fork 0

Update web_app.py

This commit is contained in:
Eric Lay 2025-07-31 19:56:36 -05:00
parent 98bce1d640
commit 0ceeb43abc
1 changed files with 1 additions and 1 deletions

View File

@ -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}")