reduce overly aggressive downvote blocking

This commit is contained in:
rimu 2024-01-08 18:50:37 +13:00
parent 59920686c0
commit 2e3cf467ba

View file

@ -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