diff --git a/files/routes/chat.py b/files/routes/chat.py index 82e9afb6b8..e8c31e5c9b 100644 --- a/files/routes/chat.py +++ b/files/routes/chat.py @@ -47,7 +47,7 @@ def is_not_permabanned_socketio(f): wrapper.__name__ = f.__name__ return wrapper -CHAT_ERROR_MESSAGE = f"To prevent spam, you'll need either {TRUESCORE_CHAT_MINIMUM} truescore (this is {TRUESCORE_CHAT_MINIMUM} votes, either up or down, on any threads or comments you've made) OR simply verify your email in order to access chat. Sorry! I love you 💖" +CHAT_ERROR_MESSAGE = f"To prevent spam, you'll need {TRUESCORE_CHAT_MINIMUM} truescore (this is {TRUESCORE_CHAT_MINIMUM} votes, either up or down, on any threads or comments you've made) in order to access chat. Sorry! I love you 💖" @app.get("/chat") @limiter.limit(DEFAULT_RATELIMIT, deduct_when=lambda response: response.status_code < 400)