# HG changeset patch # User Kim Alvefur # Date 1582830347 -3600 # Node ID 1a23a58ac84e14a0fcc8f17f3cd87fac7c40621e # Parent 5e1384298e97b7765b29a94126985172f6ff61ea# Parent 657e61531b33d9d341e963a6c5246c29465fd71d Merge 0.11->trunk diff -r 5e1384298e97 -r 1a23a58ac84e plugins/mod_pep.lua --- a/plugins/mod_pep.lua Thu Feb 27 19:50:30 2020 +0100 +++ b/plugins/mod_pep.lua Thu Feb 27 20:05:47 2020 +0100 @@ -52,7 +52,7 @@ end function is_item_stanza(item) - return st.is_stanza(item) and item.attr.xmlns == xmlns_pubsub and item.name == "item"; + return st.is_stanza(item) and item.attr.xmlns == xmlns_pubsub and item.name == "item" and #item.tags == 1; end function check_node_config(node, actor, new_config) -- luacheck: ignore 212/node 212/actor diff -r 5e1384298e97 -r 1a23a58ac84e plugins/mod_pubsub/mod_pubsub.lua --- a/plugins/mod_pubsub/mod_pubsub.lua Thu Feb 27 19:50:30 2020 +0100 +++ b/plugins/mod_pubsub/mod_pubsub.lua Thu Feb 27 20:05:47 2020 +0100 @@ -112,7 +112,7 @@ end function is_item_stanza(item) - return st.is_stanza(item) and item.attr.xmlns == xmlns_pubsub and item.name == "item"; + return st.is_stanza(item) and item.attr.xmlns == xmlns_pubsub and item.name == "item" and #item.tags == 1; end -- Compose a textual representation of Atom payloads