mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
DEV: Fix another MessageBus::InvalidMessageTarget
error.
Follow-up to c2f2b57a9b
.
This commit is contained in:
parent
f7438fc64b
commit
49f53bdc50
1 changed files with 7 additions and 5 deletions
|
@ -438,11 +438,13 @@ SQL
|
||||||
}
|
}
|
||||||
|
|
||||||
channels.each do |channel, ids|
|
channels.each do |channel, ids|
|
||||||
MessageBus.publish(
|
if ids.present?
|
||||||
channel,
|
MessageBus.publish(
|
||||||
message.as_json,
|
channel,
|
||||||
user_ids: ids
|
message.as_json,
|
||||||
)
|
user_ids: ids
|
||||||
|
)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue