Software /
code /
prosody
Changeset
1351:b58ff7ed5676
mod_muc: Don't reply with an error in response to unacceptable result stanzas
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Sun, 14 Jun 2009 16:31:51 +0500 |
parents | 1350:ea43c371228a |
children | 1352:aad3ebce4fcc |
files | plugins/mod_muc.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_muc.lua Sun Jun 14 16:30:45 2009 +0500 +++ b/plugins/mod_muc.lua Sun Jun 14 16:31:51 2009 +0500 @@ -321,7 +321,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"));