diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-08-23 09:22:05 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-08-23 09:22:05 +0100 |
commit | 1bb5caff25d1a15f0d89f4b4c8c29f30d52d5f67 (patch) | |
tree | 213f1ce5121357425192f2f4abec171056eb4cc9 | |
parent | ef0bac2fe0bde60b990bb952a73f9bd9b526f7eb (diff) | |
download | prosody-1bb5caff25d1a15f0d89f4b4c8c29f30d52d5f67.tar.gz prosody-1bb5caff25d1a15f0d89f4b4c8c29f30d52d5f67.zip |
util.xmppstream: When error is 'no-stream', pass the received tagname to the error handler
-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 73f5e314..138c86b7 100644 --- a/util/xmppstream.lua +++ b/util/xmppstream.lua @@ -109,7 +109,7 @@ function new_sax_handlers(session, stream_callbacks, cb_handleprogress) end else -- Garbage before stream? - cb_error(session, "no-stream"); + cb_error(session, "no-stream", tagname); end return; end |