commit 8b1f10aee0ccaa2bc4bb53701a8f7999e7be9219 parent b5adb084f277319940280b57635c2a3589e8cd51 Author: Dan Stillman <dstillman@zotero.org> Date: Sun, 27 Mar 2016 03:19:39 -0400 Properly delete library version for full-text sync on library delete Diffstat:
| M | chrome/content/zotero/xpcom/fulltext.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/fulltext.js b/chrome/content/zotero/xpcom/fulltext.js @@ -119,7 +119,7 @@ Zotero.Fulltext = Zotero.FullText = new function(){ this.clearLibraryVersion = function (libraryID) { - return Zotero.DB.queryAsync("DELETE FROM version WHERE schema=?", "fulltext" + libraryID); + return Zotero.DB.queryAsync("DELETE FROM version WHERE schema=?", "fulltext_" + libraryID); };