From 17f2025c53085b808ea8506a30d8aada8517a097 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 5 Jun 2018 08:39:17 -0400 Subject: [PATCH] Fix import into selected library from wizard --- chrome/content/zotero/fileInterface.js | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/chrome/content/zotero/fileInterface.js b/chrome/content/zotero/fileInterface.js index a093d8b0e..75cb863cb 100644 --- a/chrome/content/zotero/fileInterface.js +++ b/chrome/content/zotero/fileInterface.js @@ -463,11 +463,16 @@ var Zotero_File_Interface = new function() { return false; } - let importCollection = null, libraryID = Zotero.Libraries.userLibraryID; + var libraryID = Zotero.Libraries.userLibraryID; + var importCollection = null; try { - libraryID = ZoteroPane.getSelectedLibraryID(); - importCollection = ZoteroPane.getSelectedCollection(); - } catch(e) {} + let zp = Zotero.getActiveZoteroPane(); + libraryID = zp.getSelectedLibraryID(); + importCollection = zp.getSelectedCollection(); + } + catch (e) { + Zotero.logError(e); + } if(createNewCollection) { // Create a new collection to take imported items