diff options
author | Kim Alvefur <zash@zash.se> | 2017-11-09 17:22:47 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-11-09 17:22:47 +0100 |
commit | a957f6c038290ebec028cc6bda8edfcf1844a7a8 (patch) | |
tree | afdb782aa1e0b8bd1953b28a29e696f87e09251f | |
parent | 476d3cfb23e6a129f257d6e819cf2f85b8e58b50 (diff) | |
download | prosody-a957f6c038290ebec028cc6bda8edfcf1844a7a8.tar.gz prosody-a957f6c038290ebec028cc6bda8edfcf1844a7a8.zip |
mod_pubsub: Allow itemstore to override item ids
-rw-r--r-- | plugins/mod_pubsub/pubsub.lib.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index 3146054e..8890392e 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -297,6 +297,9 @@ function handlers.set_publish(origin, stanza, publish, service) local ok, ret = service:publish(node, stanza.attr.from, id, item); local reply; if ok then + if type(ok) == "string" then + id = ok; + end reply = st.reply(stanza) :tag("pubsub", { xmlns = xmlns_pubsub }) :tag("publish", { node = node }) |