aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_pep.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-08-16 15:35:46 +0200
committerKim Alvefur <zash@zash.se>2018-08-16 15:35:46 +0200
commitb7e3b3d3252eb3a7ef5099208873a93f189c3bb4 (patch)
tree97454a344a79734b2e3a8cdbfc1e658704e8b69b /plugins/mod_pep.lua
parent8121e242b060b4024452750e6c8643cb31dfca4e (diff)
downloadprosody-b7e3b3d3252eb3a7ef5099208873a93f189c3bb4.tar.gz
prosody-b7e3b3d3252eb3a7ef5099208873a93f189c3bb4.zip
mod_pep: Respect setting for whether to include payload in notifications
Diffstat (limited to 'plugins/mod_pep.lua')
-rw-r--r--plugins/mod_pep.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua
index fb4e2f0d..7533d6f1 100644
--- a/plugins/mod_pep.lua
+++ b/plugins/mod_pep.lua
@@ -138,6 +138,11 @@ local function get_broadcaster(username)
if item then
item = st.clone(item);
item.attr.xmlns = nil; -- Clear the pubsub namespace
+ if kind == "items" then
+ if node_obj and node_obj.config.include_payload == false then
+ item:maptags(function () return nil; end);
+ end
+ end
message:add_child(item);
end
for jid in pairs(jids) do