diff options
author | Kim Alvefur <zash@zash.se> | 2018-03-28 18:11:09 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-03-28 18:11:09 +0200 |
commit | d28da6dd6c58a20d29276033b8c03ad8003853d6 (patch) | |
tree | 11aba652bba4afdcb585f96d9fbab5c4e955d11c /plugins/muc | |
parent | 2ab7d55007248389b47e61b665f7acd8732456d7 (diff) | |
download | prosody-d28da6dd6c58a20d29276033b8c03ad8003853d6.tar.gz prosody-d28da6dd6c58a20d29276033b8c03ad8003853d6.zip |
MUC: Don't reply to errors with more errors (fixes #1122)
Diffstat (limited to 'plugins/muc')
-rw-r--r-- | plugins/muc/mod_muc.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index 0aa7fcee..7304b5b1 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -171,7 +171,9 @@ function stanza_handler(event) local room = rooms[bare]; if not room then if stanza.name ~= "presence" or stanza.attr.type ~= nil then - origin.send(st.error_reply(stanza, "cancel", "item-not-found")); + if stanza.attr.type ~= "error" then + origin.send(st.error_reply(stanza, "cancel", "item-not-found")); + end return true; end if not(restrict_room_creation) or |