mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_s2s: Prevent traceback when replying to incoming connection to a host we don't serve
This commit is contained in:
parent
ae5806cd67
commit
fee52c7341
1 changed files with 1 additions and 1 deletions
|
@ -486,7 +486,7 @@ function session_open_stream(session, from, to)
|
|||
from = from, to = to,
|
||||
}
|
||||
local local_host = session.direction == "outgoing" and from or to;
|
||||
if not local_host or hosts[local_host].modules.dialback then
|
||||
if not local_host or (hosts[local_host] and hosts[local_host].modules.dialback) then
|
||||
attr["xmlns:db"] = 'jabber:server:dialback';
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue