# HG changeset patch # User Matthew Wild # Date 1236023428 0 # Node ID 946d0f91bd381a5cc514c5ee290000cece0ea98b # Parent 57057f2cbecb9bc5a929f25af957fbb66c2c3f94 mod_muc: Don't bounce error replies in response to errors diff -r 57057f2cbecb -r 946d0f91bd38 plugins/mod_muc.lua --- a/plugins/mod_muc.lua Mon Mar 02 19:49:09 2009 +0000 +++ b/plugins/mod_muc.lua Mon Mar 02 19:50:28 2009 +0000 @@ -287,7 +287,7 @@ 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"));