FIX: ensures we don't attempt to concat an empty list (#10600)
This commit is contained in:
parent
34c2dfccb7
commit
c5b8a47901
|
@ -120,7 +120,7 @@ class PostActionNotifier
|
|||
end
|
||||
|
||||
custom_post_revision_notifier_recipients.each do |block|
|
||||
user_ids.concat(block.call(post_revision))
|
||||
user_ids.concat(Array(block.call(post_revision)))
|
||||
end
|
||||
|
||||
if user_ids.present?
|
||||
|
|
Loading…
Reference in New Issue