www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit b2d91af90d06c281ff37a9e34fb648afe61fc614
parent 2588a0a651fdf434fdccbcd87146184e59c9dea5
Author: Dan Stillman <dstillman@zotero.org>
Date:   Wed,  3 May 2017 04:47:18 -0400

Fix missing paren from 5b0b8744351

Diffstat:
Mchrome/content/zotero/xpcom/sync/syncLocal.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/sync/syncLocal.js b/chrome/content/zotero/xpcom/sync/syncLocal.js @@ -1113,7 +1113,7 @@ Zotero.Sync.Data.Local = { + "SELECT SC.ROWID FROM syncCache SC " + `LEFT JOIN ${table} O USING (libraryID, key, version) ` + "WHERE syncObjectTypeID=? AND SC.libraryID=? AND " - + "(O.libraryID IS NULL OR SC.version < O.version)"; + + "(O.libraryID IS NULL OR SC.version < O.version))"; yield Zotero.DB.queryAsync(sql, [syncObjectTypeID, libraryID]); }),