diff --git a/files/routes/chat.py b/files/routes/chat.py index 393ac81a0..d64b2cb3a 100644 --- a/files/routes/chat.py +++ b/files/routes/chat.py @@ -7,15 +7,16 @@ from files.__main__ import app from flask import render_template import sys + +@app.get("/chat") +@auth_required +def chat( v): + return render_template("chat.html", v=v) + + if "load_chat" in sys.argv: sex = SocketIO(app) - @app.get("/chat") - @auth_required - def chat( v): - return render_template("chat.html", v=v) - - @sex.on('speak') @auth_required def speak(data, v):