diff --git a/files/routes/chat.py b/files/routes/chat.py index e7dff54c9..31513170e 100644 --- a/files/routes/chat.py +++ b/files/routes/chat.py @@ -58,7 +58,8 @@ def refresh_chat(chat_id): @socketio.on('speak') @auth_required_socketio def speak(data, v): - if v.is_suspended: return '' + if SITE_NAME == 'WPD' and v.is_suspended: + return '' try: chat_id = int(data['chat_id']) except: return ''