diff options
author | Kim Alvefur <zash@zash.se> | 2021-02-03 16:14:43 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-02-03 16:14:43 +0100 |
commit | 41e4648d277d560ffb6facd94e9d933a62200f12 (patch) | |
tree | 52344cad860eda505f868112c3b1f841037956df /util | |
parent | cdbb77ccbf84448fe87a8a2571b28f18b436538c (diff) | |
download | prosody-41e4648d277d560ffb6facd94e9d933a62200f12.tar.gz prosody-41e4648d277d560ffb6facd94e9d933a62200f12.zip |
util.xmppstream: Ensure stream 'id' is always present (fix #1626)
Backout c2d144d3f8dd
Diffstat (limited to 'util')
-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 6aa1def3..bab0f253 100644 --- a/util/xmppstream.lua +++ b/util/xmppstream.lua @@ -262,7 +262,7 @@ local 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, + id = session.streamid or "", from = from or session.host, to = to, }; if session.stream_attrs then |