diff --git a/app/policies/forum_post_policy.rb b/app/policies/forum_post_policy.rb index 14e315e9c..546991f09 100644 --- a/app/policies/forum_post_policy.rb +++ b/app/policies/forum_post_policy.rb @@ -24,7 +24,7 @@ class ForumPostPolicy < ApplicationPolicy end def votable? - unbanned? && show? && record.bulk_update_request.present? && record.bulk_update_request.is_pending? + unbanned? && show? && record.bulk_update_request.present? && record.bulk_update_request.is_pending? && record.bulk_update_request.user_id != user.id end def reportable?