mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Another fix for s2s (well, let's say it was more for modules)
This commit is contained in:
parent
4851756ca4
commit
084b66894b
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ function core_process_stanza(origin, stanza)
|
|||
core_handle_stanza(origin, stanza);
|
||||
elseif stanza.name == "iq" and not select(3, jid_split(to)) then
|
||||
core_handle_stanza(origin, stanza);
|
||||
elseif stanza.attr.xmlns ~= "jabber:client" and stanza.attr.xmlns ~= "jabber:server" then
|
||||
elseif stanza.attr.xmlns and stanza.attr.xmlns ~= "jabber:client" and stanza.attr.xmlns ~= "jabber:server" then
|
||||
modules_handle_stanza(origin, stanza);
|
||||
elseif origin.type == "c2s" or origin.type == "s2sin" then
|
||||
core_route_stanza(origin, stanza);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue