Software /
code /
prosody
Changeset
12455:e703a9d71360
Merge 0.12->trunk
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 07 Apr 2022 17:22:22 +0100 |
parents | 12453:1ec4a3a61cf7 (current diff) 12454:b2438f374b3e (diff) |
children | 12459:c0bc8025acf4 |
files | |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_storage_xep0227.lua Tue Apr 05 19:49:18 2022 +0200 +++ b/plugins/mod_storage_xep0227.lua Thu Apr 07 17:22:22 2022 +0100 @@ -299,6 +299,9 @@ ]] }; local owner_el = user_el:get_child("pubsub", xmlns_pubsub_owner); + if not owner_el then + return nil; + end for node_el in owner_el:childtags() do local node_name = node_el.attr.node; local node = nodes[node_name];