aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2014-04-02 14:31:19 +0100
committerMatthew Wild <mwild1@gmail.com>2014-04-02 14:31:19 +0100
commit208fa9afdeb4b0273ac1271bfca738f802346e2d (patch)
treea1e732d4f13969fa7f9c956379ccb95816daca2a /util
parent85fa5325e2b7d3acdbb9c81bb87af2e811cf0871 (diff)
downloadprosody-208fa9afdeb4b0273ac1271bfca738f802346e2d.tar.gz
prosody-208fa9afdeb4b0273ac1271bfca738f802346e2d.zip
util.xmppstream: Also disable CharacterData merging after stream restarts
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 a25891a9..73f5e314 100644
--- a/util/xmppstream.lua
+++ b/util/xmppstream.lua
@@ -243,7 +243,7 @@ function new(session, stream_callbacks, stanza_size_limit)
return {
reset = function ()
- parser = new_parser(handlers, ns_separator);
+ parser = new_parser(handlers, ns_separator, false);
parse = parser.parse;
n_outstanding_bytes = 0;
meta.reset();