diff options
author | Kim Alvefur <zash@zash.se> | 2019-05-05 07:16:05 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-05-05 07:16:05 +0200 |
commit | fcda870911ff3a9ae66a3051c0e1a281f7b99772 (patch) | |
tree | 595aa6b46402fa7b22b3939d4be7863c709f0b96 /plugins | |
parent | a770a8430662ca624d81bdf4e23e8da5356c82ac (diff) | |
download | prosody-fcda870911ff3a9ae66a3051c0e1a281f7b99772.tar.gz prosody-fcda870911ff3a9ae66a3051c0e1a281f7b99772.zip |
mod_mam: Propagate item-not-found to client (fixes #1325)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index 632de9ea..317ddac1 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -142,7 +142,11 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event) }); if not data then - origin.send(st.error_reply(stanza, "cancel", "internal-server-error", err)); + if err == "item-not-found" then + origin.send(st.error_reply(stanza, "modify", "item-not-found")); + else + origin.send(st.error_reply(stanza, "cancel", "internal-server-error")); + end return true; end local total = tonumber(err); |