From 4df96767ba9f45d8dbed06990f2cce654a929d97 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sat, 12 Nov 2022 14:11:28 +0200 Subject: [PATCH] count patron votes as real always --- files/classes/user.py | 1 + 1 file changed, 1 insertion(+) diff --git a/files/classes/user.py b/files/classes/user.py index a7b136081..fa3f6ac2d 100644 --- a/files/classes/user.py +++ b/files/classes/user.py @@ -291,6 +291,7 @@ class User(Base): @property @lazy def is_votes_real(self): + if self.patron: return True if self.is_suspended_permanently or self.shadowbanned: return False if self.agendaposter: return False if self.profile_url.startswith('/e/') and not self.customtitle and self.namecolor == DEFAULT_COLOR: return False