aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_pep.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-08-16 14:32:21 +0200
committerKim Alvefur <zash@zash.se>2018-08-16 14:32:21 +0200
commit98c9778cc77d1d81300742e34c81c20a44accef1 (patch)
treeae0edbc4facdcd6150d87ce35800e68ded54b145 /plugins/mod_pep.lua
parent16f48337f31a4edfade237a5f6efe08e6a2ec887 (diff)
downloadprosody-98c9778cc77d1d81300742e34c81c20a44accef1.tar.gz
prosody-98c9778cc77d1d81300742e34c81c20a44accef1.zip
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.
Diffstat (limited to 'plugins/mod_pep.lua')
-rw-r--r--plugins/mod_pep.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua
index 4239ce66..777783da 100644
--- a/plugins/mod_pep.lua
+++ b/plugins/mod_pep.lua
@@ -124,6 +124,9 @@ end
local function get_broadcaster(username)
local user_bare = jid_join(username, host);
local function simple_broadcast(kind, node, jids, item)
+ if kind == "retract" then
+ kind = "items"; -- XEP-0060 signals retraction in an <items> container
+ end
local message = st.message({ from = user_bare, type = "headline" })
:tag("event", { xmlns = xmlns_pubsub_event })
:tag(kind, { node = node });