mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.pubsub: Pass "retract" as the type of such broadcasts
This moves some XEP-0060 awkwardness out of util.pubsub and into mod_pubsub A retraction is broadcast in an <items> container, whereas most other kinds of broadcasts are in a container with a name matching the 'kind' attribute.
This commit is contained in:
parent
16f48337f3
commit
98c9778cc7
3 changed files with 8 additions and 1 deletions
|
@ -523,7 +523,7 @@ function service:retract(node, actor, id, retract)
|
|||
end
|
||||
self.events.fire_event("item-retracted", { node = node, actor = actor, id = id });
|
||||
if retract then
|
||||
self.config.broadcaster("items", node, node_obj.subscribers, retract, actor, node_obj, self);
|
||||
self.config.broadcaster("retract", node, node_obj.subscribers, retract, actor, node_obj, self);
|
||||
end
|
||||
return true
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue