diff options
-rw-r--r-- | plugins/mod_pep.lua | 5 |
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 |