diff options
author | Kim Alvefur <zash@zash.se> | 2014-08-27 13:00:04 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-08-27 13:00:04 +0200 |
commit | 5e9e11b7bc2634db4c175234f9ca9c91253bcaa8 (patch) | |
tree | c3a3e67a6fcf1055c554c6ef1e6e4726812a2b75 | |
parent | 76553f0d6fa7bee5cd3478f7c0fedc3719a52505 (diff) | |
download | prosody-5e9e11b7bc2634db4c175234f9ca9c91253bcaa8.tar.gz prosody-5e9e11b7bc2634db4c175234f9ca9c91253bcaa8.zip |
util.xmppstream: Don't include empty stream ID in stream header (got here from mod_c2s)
-rw-r--r-- | util/xmppstream.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/xmppstream.lua b/util/xmppstream.lua index 6982aae3..5848e200 100644 --- a/util/xmppstream.lua +++ b/util/xmppstream.lua @@ -249,7 +249,7 @@ function new(session, stream_callbacks, stanza_size_limit) ["xml:lang"] = "en", xmlns = stream_callbacks.default_ns, version = session.version and (session.version > 0 and "1.0" or nil), - id = session.streamid or "", + id = session.streamid, from = from or session.host, to = to, }; if session.stream_attrs then |