aboutsummaryrefslogtreecommitdiffstats
path: root/util/xmppstream.lua
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
commitae885de6a2f36eacd6085e7582e5019882208d23 (patch)
treea1e732d4f13969fa7f9c956379ccb95816daca2a /util/xmppstream.lua
parent507456f8836ce073df49d7e7bcb5dcab325a20e0 (diff)
downloadprosody-ae885de6a2f36eacd6085e7582e5019882208d23.tar.gz
prosody-ae885de6a2f36eacd6085e7582e5019882208d23.zip
util.xmppstream: Also disable CharacterData merging after stream restarts
Diffstat (limited to 'util/xmppstream.lua')
-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();