diff --git a/app/models/comment.rb b/app/models/comment.rb index a1eec60..efc083e 100644 --- a/app/models/comment.rb +++ b/app/models/comment.rb @@ -324,7 +324,7 @@ class Comment < ActiveRecord::Base end def is_downvotable? - if self.created_at && self.score >= DOWNVOTABLE_MIN_SCORE + if self.created_at && self.score > DOWNVOTABLE_MIN_SCORE Time.now - self.created_at <= DOWNVOTABLE_DAYS.days else false