summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
Diffstat (limited to 'protocols')
-rw-r--r--protocols/Facebook/src/server.cpp2
-rw-r--r--protocols/Facebook/src/version.h2
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>