From: Matthew Wild Date: Mon, 2 Mar 2009 19:50:28 +0000 (+0000) Subject: mod_muc: Don't bounce error replies in response to errors X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=19f7231696eafe8ee586a3f81582d3f0b5585457;hp=bc0d957d23494b9ea928f1fcd1276aa7f73721f6;p=prosody.git mod_muc: Don't bounce error replies in response to errors --- diff --git a/plugins/mod_muc.lua b/plugins/mod_muc.lua index 83c35563..1f8d04e9 100644 --- a/plugins/mod_muc.lua +++ b/plugins/mod_muc.lua @@ -287,7 +287,7 @@ function handle_to_occupant(origin, stanza) -- PM, vCards, etc elseif type ~= 'result' then -- bad type origin.send(st.error_reply(stanza, "modify", "bad-request")); -- FIXME correct error? end - elseif not current_nick then -- not in room + elseif not current_nick and type ~= "error" then -- not in room origin.send(st.error_reply(stanza, "cancel", "not-acceptable")); elseif stanza.name == "message" and type == "groupchat" then -- groupchat messages not allowed in PM origin.send(st.error_reply(stanza, "modify", "bad-request"));