diff --git a/files/routes/chat.py b/files/routes/chat.py index 8617a8228..f0cf696e2 100644 --- a/files/routes/chat.py +++ b/files/routes/chat.py @@ -41,7 +41,9 @@ messages = cache.get(f'messages') or { def chat(v): if not v.admin_level and TRUESCORE_CHAT_MINIMUM and v.truescore < TRUESCORE_CHAT_MINIMUM: abort(403, f"Need at least {TRUESCORE_CHAT_MINIMUM} truescore for access to chat.") - if v.id == 1: print(messages[f"{SITE_FULL}/chat"], flush=True) + + if v.id == 1: print(messages[f"{SITE_FULL}/chat"], flush=True) + return 'aaaa' return render_template("chat.html", v=v, messages=messages[f"{SITE_FULL}/chat"]) @app.get("/admin/chat")