From e863d93b2b4b58c2873e163258ac6e70e5d28774 Mon Sep 17 00:00:00 2001 From: Aevann Date: Sat, 1 Jul 2023 17:19:53 +0300 Subject: [PATCH] increase post ratelimit on WPD --- files/helpers/config/const.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/files/helpers/config/const.py b/files/helpers/config/const.py index e2791695c..930d47d4f 100644 --- a/files/helpers/config/const.py +++ b/files/helpers/config/const.py @@ -47,7 +47,7 @@ class Service(Enum): RDRAMA = auto() CHAT = auto() -POST_RATELIMIT = '10/hour;20/day' +POST_RATELIMIT = '20/day' DEFAULT_RATELIMIT = "30/minute;200/hour;1000/day" CASINO_RATELIMIT = "100/minute;2000/hour;12000/day" @@ -892,6 +892,8 @@ if SITE == 'rdrama.net': 'justcool393': JUSTCOOL_ID } elif SITE == 'watchpeopledie.tv': + POST_RATELIMIT = '30/day' + NOTIFICATION_SPAM_AGE_THRESHOLD = 0.5 * 86400 EMAIL = "wpd@watchpeopledie.tv"