diff options
author | George Hazan <ghazan@miranda.im> | 2020-07-16 16:15:56 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-07-16 16:15:56 +0300 |
commit | f37836a977f7796a756834fa76bac349c8b8490f (patch) | |
tree | c2e851872729f195d712de6688543f6145b9a88a | |
parent | 4c2ae0ac2807781bdd6453f10a94c965cf0e5a81 (diff) |
fixes #2476 (Facebook: ERROR_QUEUE_EXCEEDS_MAX_DELTAS)
-rw-r--r-- | protocols/Facebook/src/server.cpp | 2 | ||||
-rw-r--r-- | protocols/Facebook/src/version.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Facebook/src/server.cpp b/protocols/Facebook/src/server.cpp index b2fc847768..d8fb1e2a1b 100644 --- a/protocols/Facebook/src/server.cpp +++ b/protocols/Facebook/src/server.cpp @@ -579,7 +579,7 @@ void FacebookProto::OnPublishMessage(FbThriftReader &rdr) CMStringA errorCode = root["errorCode"].as_mstring(); if (!errorCode.IsEmpty()) { - if (!m_QueueCreated && (errorCode == "ERROR_QUEUE_OVERFLOW" || errorCode == "ERROR_QUEUE_NOT_FOUND" || errorCode == "ERROR_QUEUE_LOST")) { + if (!m_QueueCreated && (errorCode == "ERROR_QUEUE_OVERFLOW" || errorCode == "ERROR_QUEUE_NOT_FOUND" || errorCode == "ERROR_QUEUE_LOST" || errorCode == "ERROR_QUEUE_EXCEEDS_MAX_DELTAS")) { m_QueueCreated = true; // prevent queue creation request from being sent twice delSetting(DBKEY_SYNC_TOKEN); m_szSyncToken.Empty(); delSetting(DBKEY_SID); m_sid = 0; diff --git a/protocols/Facebook/src/version.h b/protocols/Facebook/src/version.h index e9df1063b4..8e1daa5642 100644 --- a/protocols/Facebook/src/version.h +++ b/protocols/Facebook/src/version.h @@ -1,7 +1,7 @@ #define __MAJOR_VERSION 0 #define __MINOR_VERSION 1 #define __RELEASE_NUM 0 -#define __BUILD_NUM 7 +#define __BUILD_NUM 8 #include <stdver.h> |