about summary refs log tree commit diff
path: root/app/models/poll.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/poll.rb')
-rw-r--r--app/models/poll.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/poll.rb b/app/models/poll.rb
index 1a326e452..af3b09315 100644
--- a/app/models/poll.rb
+++ b/app/models/poll.rb
@@ -85,6 +85,7 @@ class Poll < ApplicationRecord
   def reset_votes!
     self.cached_tallies = options.map { 0 }
     self.votes_count = 0
+    self.voters_count = 0
     votes.delete_all unless new_record?
   end