From 042b5142356b638d6dcfb36f61d5451b4e8659da Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Thu, 27 Feb 2020 20:01:54 +0100 Subject: mod_pubsub, mod_pep: Ensure correct number of children of (fixes #1496) --- plugins/mod_pep.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/mod_pep.lua') diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua index 12be41a2..f8047a92 100644 --- a/plugins/mod_pep.lua +++ b/plugins/mod_pep.lua @@ -51,7 +51,7 @@ function module.restore(data) 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 -- cgit v1.2.3