diff options
| author | Linus Jahn <lnj@kaidan.im> | 2020-12-27 18:47:23 +0100 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2020-12-27 18:47:23 +0100 |
| commit | efd103c28406c4dd3a78ce4d7849e86ea7e96e9a (patch) | |
| tree | 5a611ce2ba5fc18b4194dba4484dd860283269a0 /src/base | |
| parent | b42bfff60ecee7c0ae3e90dc63bd558f04eb3ab6 (diff) | |
| download | qxmpp-efd103c28406c4dd3a78ce4d7849e86ea7e96e9a.tar.gz | |
Fix empty incoming XML log introduced in 6dce271
Diffstat (limited to 'src/base')
| -rw-r--r-- | src/base/QXmppStream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/QXmppStream.cpp b/src/base/QXmppStream.cpp index e90bd4a3..845c449a 100644 --- a/src/base/QXmppStream.cpp +++ b/src/base/QXmppStream.cpp @@ -297,8 +297,8 @@ void QXmppStream::processData(const QString &data) // // Success: We can clear the buffer and send a 'received' log message // - d->dataBuffer.clear(); logReceived(d->dataBuffer); + d->dataBuffer.clear(); // process stream start if (hasStreamOpen) { |
