Fix import into selected library from wizard
This commit is contained in:
parent
6ac65373a3
commit
17f2025c53
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user