# HG changeset patch # User Waqas Hussain # Date 1244979045 -18000 # Node ID ea43c371228a6252e252cd0f11e211c464317173 # Parent 1d6c4a6c75e5606e99cc9985baf94902e9ddf636 util.muc: Don't reply with an error in response to unacceptable result stanzas diff -r 1d6c4a6c75e5 -r ea43c371228a util/muc.lua --- a/util/muc.lua Sun Jun 14 16:28:01 2009 +0500 +++ b/util/muc.lua Sun Jun 14 16:30:45 2009 +0500 @@ -262,7 +262,7 @@ elseif type ~= 'result' then -- bad type origin.send(st.error_reply(stanza, "modify", "bad-request")); -- FIXME correct error? end - elseif not current_nick and type ~= "error" then -- not in room + elseif not current_nick and type ~= "error" and type ~= "result" 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"));