diff --git a/app/models/comment_vote.rb b/app/models/comment_vote.rb index 88ec2d084..accf9bc92 100644 --- a/app/models/comment_vote.rb +++ b/app/models/comment_vote.rb @@ -39,9 +39,6 @@ class CommentVote < ActiveRecord::Base if is_positive? && comment.creator == CurrentUser.user errors.add :base, "You cannot upvote your own comments" false - elsif is_negative? && comment.creator.is_admin? - errors.add :base, "You cannot downvote an admin comment" - false else true end