Skip to content

Commit

Permalink
Fix missing paren from 5b0b874
Browse files Browse the repository at this point in the history
  • Loading branch information
dstillman committed May 3, 2017
1 parent 2588a0a commit b2d91af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrome/content/zotero/xpcom/sync/syncLocal.js
Expand Up @@ -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]);
}),

Expand Down

0 comments on commit b2d91af

Please sign in to comment.