mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-02-02 16:21:32 -08:00
reduce overly aggressive downvote blocking
This commit is contained in:
parent
59920686c0
commit
2e3cf467ba
1 changed files with 1 additions and 1 deletions
|
@ -394,7 +394,7 @@ def can_downvote(user, community: Community, site=None) -> bool:
|
|||
if community.local_only and not user.is_local():
|
||||
return False
|
||||
|
||||
if user.attitude < 0.33:
|
||||
if user.attitude < -0.40 or user.reputation < -10: # this should exclude about 3.7% of users.
|
||||
return False
|
||||
|
||||
return True
|
||||
|
|
Loading…
Add table
Reference in a new issue