mod_s2s: Prevent traceback when replying to incoming connection to a host we don't serve

This commit is contained in:
Kim Alvefur 2013-03-26 09:25:20 +01:00
parent ae5806cd67
commit fee52c7341

View file

@ -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