mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Fix calling exists?
on Arrays.
This commit is contained in:
parent
4b4169c8fd
commit
0531ef2e20
@ -32,7 +32,7 @@ class PostAnalyzer
|
||||
|
||||
cooked_stripped.css("img").reject do |t|
|
||||
if dom_class = t["class"]
|
||||
(Post.white_listed_image_classes & dom_class.split).exists?
|
||||
(Post.white_listed_image_classes & dom_class.split).count > 0
|
||||
end
|
||||
end.count
|
||||
end
|
||||
|
@ -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].exists?
|
||||
active_flags[id].count > 0
|
||||
end
|
||||
|
||||
if actions.present? && actions.has_key?(id)
|
||||
|
Loading…
Reference in New Issue
Block a user