Fix truescore change on can_change_user_privacy

This commit is contained in:
justcool393 2023-07-27 22:42:59 -05:00
parent caa89755f8
commit c7e73e239b

View file

@ -192,7 +192,7 @@ class User(CreatedBase):
return (
self.comment_count >= min_comments
and self.truecoins >= min_truescore
and self.truescore >= min_truescore
and user_age_days >= min_age_days)