change count>0 to exists

This commit is contained in:
junwen yang
2017-08-23 22:54:51 +00:00
parent 868c489d5e
commit 8124f26a6e
4 changed files with 4 additions and 4 deletions

View File

@@ -243,7 +243,7 @@ class PostSerializer < BasicPostSerializer
summary[:can_defer_flags] = true if scope.is_staff? &&
PostActionType.flag_types.values.include?(id) &&
active_flags.present? && active_flags.has_key?(id) &&
active_flags[id].count > 0
active_flags[id].exists?
end
if actions.present? && actions.has_key?(id)