diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-17 14:32:26 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-17 14:32:26 +0100 |
commit | 70870199ee146db1ff7d5a15bda6eb5c0d96a1a3 (patch) | |
tree | 18c13a678eb53d5b8a1ea2486f5e6cf9f4383dee | |
parent | 11233f48157c8e92a5fb77636a3cd09c557d4d48 (diff) | |
download | prosody-70870199ee146db1ff7d5a15bda6eb5c0d96a1a3.tar.gz prosody-70870199ee146db1ff7d5a15bda6eb5c0d96a1a3.zip |
mod_pubsub: Only assign id to item element if there is one
-rw-r--r-- | plugins/mod_pubsub.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/mod_pubsub.lua b/plugins/mod_pubsub.lua index 4d3911bb..22969ab5 100644 --- a/plugins/mod_pubsub.lua +++ b/plugins/mod_pubsub.lua @@ -193,7 +193,9 @@ function handlers.set_publish(origin, stanza, publish) local id = (item and item.attr.id); if not id then id = uuid_generate(); - item.attr.id = id; + if item then + item.attr.id = id; + end end local ok, ret = service:publish(node, stanza.attr.from, id, item); local reply; |