From 7fc3488854ac4111d3eec856ea3ea7546db37593 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sat, 5 Nov 2022 16:07:46 +0200 Subject: [PATCH] add 4 more boosted holes --- files/routes/votes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/votes.py b/files/routes/votes.py index 0b58db8d9..d52df0b4c 100644 --- a/files/routes/votes.py +++ b/files/routes/votes.py @@ -139,7 +139,7 @@ def vote_post_comment(target_id, new, v, cls, vote_cls): target.downvotes = get_vote_count(-1, False) target.realupvotes = get_vote_count(0, True) # first arg is ignored here - if target.author.progressivestack or (cls == Submission and (target.sub in ('space', 'istory', 'dinos', 'furry', 'anime') or target.domain.endswith('.win') or target.domain in BOOSTED_SITES)): + if target.author.progressivestack or (cls == Submission and (target.sub in ('space', 'istory', 'dinos', 'furry', 'anime', 'slackernews', 'gaybros', 'againsthateholes', 'femboy') or target.domain.endswith('.win') or target.domain in BOOSTED_SITES)): target.realupvotes *= 2 g.db.add(target) return "", 204