From 24345f48cd48e457e7980fa486ce14c74cd3e467 Mon Sep 17 00:00:00 2001 From: Aevann Date: Wed, 16 Aug 2023 23:25:30 +0300 Subject: [PATCH] up under_siege post threshold on WPD from 10 minutes to 1 day --- files/helpers/actions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/files/helpers/actions.py b/files/helpers/actions.py index d31c628df..fdc9fcdae 100644 --- a/files/helpers/actions.py +++ b/files/helpers/actions.py @@ -503,6 +503,8 @@ def execute_under_siege(v, target, body, kind): if kind in {'message', 'report'} and SITE == 'rdrama.net': threshold = 86400 + elif kind == 'post' and SITE == 'watchpeopledie.tv': + threshold = 86400 else: threshold = UNDER_SIEGE_AGE_THRESHOLD