mod_s2s: to/from attributes are required on s2s stream headers. Set them to '' when not available. Fixes #468.

This commit is contained in:
Matthew Wild 2015-03-24 16:03:37 +00:00
parent 63789fc738
commit bfbcd081de

View file

@ -512,7 +512,7 @@ function session_open_stream(session, from, to)
version = session.version and (session.version > 0 and "1.0" or nil),
["xml:lang"] = 'en',
id = session.streamid,
from = from, to = to,
from = from or "", to = to or "",
}
if not from or (hosts[from] and hosts[from].modules.dialback) then
attr["xmlns:db"] = 'jabber:server:dialback';