Fix import into selected library from wizard

This commit is contained in:
Dan Stillman 2018-06-05 08:39:17 -04:00
parent 6ac65373a3
commit 17f2025c53

View File

@ -463,11 +463,16 @@ var Zotero_File_Interface = new function() {
return false; return false;
} }
let importCollection = null, libraryID = Zotero.Libraries.userLibraryID; var libraryID = Zotero.Libraries.userLibraryID;
var importCollection = null;
try { try {
libraryID = ZoteroPane.getSelectedLibraryID(); let zp = Zotero.getActiveZoteroPane();
importCollection = ZoteroPane.getSelectedCollection(); libraryID = zp.getSelectedLibraryID();
} catch(e) {} importCollection = zp.getSelectedCollection();
}
catch (e) {
Zotero.logError(e);
}
if(createNewCollection) { if(createNewCollection) {
// Create a new collection to take imported items // Create a new collection to take imported items