From b3f9fc88f01290e35834e044b192370a734b90ff Mon Sep 17 00:00:00 2001 From: Aevann Date: Thu, 9 Feb 2023 15:47:19 +0200 Subject: [PATCH] reduce the autopin from 1 hour to 10 minutes --- files/routes/posts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/posts.py b/files/routes/posts.py index 41b1002b9..1136460d8 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -790,7 +790,7 @@ def submit_post(v:User, sub=None): if (SITE == 'rdrama.net' and v.id in (IMPASSIONATA_ID, PIZZASHILL_ID, TGTW_ID, SNALLY_ID) and not (post.sub and post.subr.stealth)): - post.stickied_utc = int(time.time()) + 3600 + post.stickied_utc = int(time.time()) + 600 post.stickied = "AutoJanny" cache.delete_memoized(frontlist)