This commit is contained in:
Aevann1 2021-12-11 04:58:04 +02:00
parent 5455047c77
commit 56c0fe2f9e

View file

@ -91,7 +91,7 @@ class Submission(Base):
def total_poll_voted(self, v):
if v:
for option in self.options + self.bet_options:
for option in self.options:
if option.poll_voted(v): return True
return False