From 16a8f0f2da366e9f9e308f4b4ded892e5fcd2161 Mon Sep 17 00:00:00 2001 From: Ben Rog-Wilhelm Date: Sun, 27 Aug 2023 14:56:39 -0500 Subject: [PATCH] Relax chat rate limiter. --- files/routes/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/chat.py b/files/routes/chat.py index a607a5fa0..a0614b866 100644 --- a/files/routes/chat.py +++ b/files/routes/chat.py @@ -109,7 +109,7 @@ def chat(v): @socketio.on('speak') -@limiter.limit("3/second;10/minute") +@limiter.limit("3/second") @chat_is_allowed() def speak(data, v): limiter.check()