From 98c9778cc77d1d81300742e34c81c20a44accef1 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Thu, 16 Aug 2018 14:32:21 +0200 Subject: 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 container, whereas most other kinds of broadcasts are in a container with a name matching the 'kind' attribute. --- plugins/mod_pubsub/mod_pubsub.lua | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'plugins/mod_pubsub') diff --git a/plugins/mod_pubsub/mod_pubsub.lua b/plugins/mod_pubsub/mod_pubsub.lua index cea4e6b2..d18d5f9f 100644 --- a/plugins/mod_pubsub/mod_pubsub.lua +++ b/plugins/mod_pubsub/mod_pubsub.lua @@ -47,6 +47,10 @@ local function create_simple_itemstore(node_config, node_name) end function simple_broadcast(kind, node, jids, item, actor, node_obj) + if kind == "retract" then + kind = "items"; -- XEP-0060 signals retraction in an container + end + if item then item = st.clone(item); item.attr.xmlns = nil; -- Clear the pubsub namespace -- cgit v1.2.3