forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-12-11 04:58:04 +02:00
parent 99638c6556
commit 4a881347ad
1 changed files with 1 additions and 1 deletions

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