From 83195cded92d7e8c4631e2a950c9b55bb000f6c4 Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 10 Feb 2023 13:53:42 +0200 Subject: [PATCH] take pizza off the autopin list and up it to 1 hour again --- files/routes/posts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/routes/posts.py b/files/routes/posts.py index 1136460d8..118ae8a9c 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -788,9 +788,9 @@ def submit_post(v:User, sub=None): execute_lawlz_actions(v, post) if (SITE == 'rdrama.net' - and v.id in (IMPASSIONATA_ID, PIZZASHILL_ID, TGTW_ID, SNALLY_ID) + and v.id in (IMPASSIONATA_ID, TGTW_ID, SNALLY_ID) and not (post.sub and post.subr.stealth)): - post.stickied_utc = int(time.time()) + 600 + post.stickied_utc = int(time.time()) + 3600 post.stickied = "AutoJanny" cache.delete_memoized(frontlist)