diff --git a/app/models/post_flag.rb b/app/models/post_flag.rb index 5ea127be9..ccc02d1f5 100644 --- a/app/models/post_flag.rb +++ b/app/models/post_flag.rb @@ -105,7 +105,7 @@ class PostFlag < ApplicationRecord errors[:post] << "is locked and cannot be flagged" if post.is_status_locked? flag = post.flags.in_cooldown.last - if flag.present? + if !is_deletion && flag.present? errors[:post] << "cannot be flagged more than once every #{COOLDOWN_PERIOD.inspect} (last flagged: #{flag.created_at.to_s(:long)})" end end