do what slackernews wants

pull/142/head
Aevann 2023-03-15 06:01:33 +02:00
parent e45472893a
commit 3044499f5e
1 changed files with 2 additions and 2 deletions

View File

@ -169,12 +169,12 @@ def vote_post_comment(target_id, new, v, cls, vote_cls):
mul = PROGSTACK_MUL
elif target.author.progressivestack or (target.author.admin_level and target.author.id not in {AEVANN_ID, CARP_ID}):
mul = 2
elif SITE == 'rdrama.net' and cls == Submission and target.author.id not in {8768,3402}:
elif SITE == 'rdrama.net' and cls == Submission and target.author.id != 8768:
if (target.domain.endswith('.win') or 'forum' in target.domain or 'chan' in target.domain
or (target.domain in BOOSTED_SITES and not target.url.startswith('/'))
or target.sub in BOOSTED_HOLES):
mul = 2
elif not target.sub and target.body_html:
elif target.sub != 'mnn' and target.body_html:
x = target.body_html.count('" target="_blank" rel="nofollow noopener">')
x += target.body_html.count('<a href="/images/')
target.realupvotes += min(x*2, 20)