diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-05-11 12:25:21 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-05-11 12:25:21 +0000 |
| commit | 9d92efc86417fbefcd426d55fd70e5e7e20779ce (patch) | |
| tree | 563280f7752248d3dc6d4e0f29735dd3599b764f /source/QXmppReconnectionManager.cpp | |
| parent | aa1c563caecb9b67171ff4415b2a1254a016917b (diff) | |
| download | qxmpp-9d92efc86417fbefcd426d55fd70e5e7e20779ce.tar.gz | |
report authentication errors
Diffstat (limited to 'source/QXmppReconnectionManager.cpp')
| -rw-r--r-- | source/QXmppReconnectionManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/QXmppReconnectionManager.cpp b/source/QXmppReconnectionManager.cpp index 65557811..c89628de 100644 --- a/source/QXmppReconnectionManager.cpp +++ b/source/QXmppReconnectionManager.cpp @@ -51,7 +51,7 @@ void QXmppReconnectionManager::error(QXmppClient::Error error) if(m_client && error == QXmppClient::XmppStreamError) { // if we receive a resource conflict, inhibit reconnection - if(m_client->getXmppStreamError() == QXmppClient::ConflictStreamError) + if(m_client->getXmppStreamError() == QXmppStanza::Error::Conflict) m_receivedConflict = true; } else if(m_client && error == QXmppClient::SocketError && !m_receivedConflict) |
