www

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

commit 23224f60935a3348c7aae3d490ada8391e152de7
parent 9165a0247f5c065890b361399f41e16ccb83f43e
Author: Adomas VenĨkauskas <adomas.ven@gmail.com>
Date:   Mon,  7 May 2018 12:51:54 +0300

Fix 'idx is undefined' error in integration missing item handler

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

diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js @@ -2458,7 +2458,7 @@ Zotero.Integration.Citation = class { }).apply(this, arguments); } - async handleMissingItem() { + async handleMissingItem(idx) { // Ask user what to do with this item if (this.citationItems.length == 1) { var msg = Zotero.getString("integration.missingItem.single");