aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2014-08-23 09:22:05 +0100
committerMatthew Wild <mwild1@gmail.com>2014-08-23 09:22:05 +0100
commit1bb5caff25d1a15f0d89f4b4c8c29f30d52d5f67 (patch)
tree213f1ce5121357425192f2f4abec171056eb4cc9 /util
parentef0bac2fe0bde60b990bb952a73f9bd9b526f7eb (diff)
downloadprosody-1bb5caff25d1a15f0d89f4b4c8c29f30d52d5f67.tar.gz
prosody-1bb5caff25d1a15f0d89f4b4c8c29f30d52d5f67.zip
util.xmppstream: When error is 'no-stream', pass the received tagname to the error handler
Diffstat (limited to 'util')
-rw-r--r--util/xmppstream.lua2
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