commit 698eb3358a2fb7ae6dc14db5290475cb66c43e3a parent ff74e0ff00832f9f2c80b869525fcc12a2d3ccf9 Author: Dan Stillman <dstillman@zotero.org> Date: Tue, 18 Apr 2017 01:44:53 -0400 Retry library sync on 409 error Closes #928 Diffstat:
| M | chrome/content/zotero/xpcom/sync/syncEngine.js | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/chrome/content/zotero/xpcom/sync/syncEngine.js b/chrome/content/zotero/xpcom/sync/syncEngine.js @@ -1593,6 +1593,7 @@ Zotero.Sync.Data.Engine.prototype._handleUploadError = Zotero.Promise.coroutine( } throw new Error(`Unexpected index value ${index}`); + case 409: // TEMP: from classic sync case 412: return this.UPLOAD_RESULT_LIBRARY_CONFLICT; }