mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
MUC: Fix traceback caused by faulty logic precedence. (thanks waqas, nulani)
This commit is contained in:
parent
4b8ade497e
commit
5db9a6c120
1 changed files with 1 additions and 1 deletions
|
@ -522,7 +522,7 @@ function room_mt:handle_to_occupant(origin, stanza) -- PM, vCards, etc
|
|||
end
|
||||
end
|
||||
elseif not current_nick then -- not in room
|
||||
if type == "error" or type == "result" and stanza.name == "iq" then
|
||||
if (type == "error" or type == "result") and stanza.name == "iq" then
|
||||
local id = stanza.attr.id;
|
||||
stanza.attr.from, stanza.attr.to, stanza.attr.id = deconstruct_stanza_id(self, stanza);
|
||||
if stanza.attr.id then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue