diff --git a/app/models/poll.rb b/app/models/poll.rb
index 5427368fd04401cc963be90972ebe4dba62a5a36..b5deafcc21fbe442f54b86fb3a0c7bb592c7aac9 100644
--- a/app/models/poll.rb
+++ b/app/models/poll.rb
@@ -36,7 +36,7 @@ class Poll < ApplicationRecord
   scope :attached, -> { where.not(status_id: nil) }
   scope :unattached, -> { where(status_id: nil) }
 
-  before_validation :prepare_options
+  before_validation :prepare_options, if: :local?
   before_validation :prepare_votes_count
 
   after_initialize :prepare_cached_tallies