www

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

commit aca15c0d2d61d6109dddcdd5935d70db3fb32b75
parent 0e31e7ca017d5d5b5fe2e42932d21883b5814cff
Author: Aurimas Vinckevicius <aurimas.dev@gmail.com>
Date:   Sat,  1 Nov 2014 00:23:00 -0500

Fix deleting saved searches

Diffstat:
Mchrome/content/zotero/xpcom/search.js | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/chrome/content/zotero/xpcom/search.js b/chrome/content/zotero/xpcom/search.js @@ -1735,6 +1735,8 @@ Zotero.Searches = new function(){ let id = ids[i]; var search = new Zotero.Search; search.id = id; + yield search.loadPrimaryData(); + yield search.loadConditions(); notifierData[id] = { old: search.serialize() }; var sql = "DELETE FROM savedSearchConditions WHERE savedSearchID=?";