diff options
author | Kim Alvefur <zash@zash.se> | 2022-04-08 23:38:10 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-04-08 23:38:10 +0200 |
commit | ed83c98f101fe5a9283aeae169a138118dd6a358 (patch) | |
tree | e09c2ed8c9a02f62974c423ad54e2cb8b6d70a5b /plugins | |
parent | 09a4bc0446ed73802f7d1a53017bee83d679ec59 (diff) | |
parent | e98f777bb2ef9156e8b19f554b2403249c95a4b7 (diff) | |
download | prosody-ed83c98f101fe5a9283aeae169a138118dd6a358.tar.gz prosody-ed83c98f101fe5a9283aeae169a138118dd6a358.zip |
Merge 0.12->trunk
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_storage_xep0227.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/mod_storage_xep0227.lua b/plugins/mod_storage_xep0227.lua index 285428d6..5c3cf7f6 100644 --- a/plugins/mod_storage_xep0227.lua +++ b/plugins/mod_storage_xep0227.lua @@ -306,9 +306,7 @@ handlers.pep = { return nil; end for node_el in pubsub_el:childtags("items") do - nodes[node_el.attr.node] = { - node = node_el.attr.node; - } + nodes[node_el.attr.node] = true; -- relies on COMPAT behavior in mod_pep end return nodes; end |