www

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

commit a39a42546f11a86249fc441725f6d4a48c86bd75
parent a64282118bfbe2a03d3c13ba0324bf558b3334ce
Author: Dan Stillman <dstillman@zotero.org>
Date:   Sat,  9 May 2015 20:10:22 -0400

Add missing yield in restoreSelectedItems()

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

diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js @@ -1814,7 +1814,7 @@ var ZoteroPane = new function() yield Zotero.DB.executeTransaction(function* () { for (let i=0; i<items.length; i++) { items[i].deleted = false; - items[i].save({ + yield items[i].save({ skipDateModifiedUpdate: true }); }