Mendeley import: Fix "Collection undefined not found" error
If a folder appeared in the DocumentFolders table but not in Folders/RemoteFolders, it caused an error.
This commit is contained in:
parent
bd5f2525dc
commit
cfbb3d3d47
|
@ -428,7 +428,12 @@ Zotero_Import_Mendeley.prototype._getDocumentCollections = async function (group
|
||||||
for (let row of rows) {
|
for (let row of rows) {
|
||||||
let keys = map.get(row.documentId);
|
let keys = map.get(row.documentId);
|
||||||
if (!keys) keys = [];
|
if (!keys) keys = [];
|
||||||
keys.push(folderKeys.get(row.folderId));
|
let key = folderKeys.get(row.folderId);
|
||||||
|
if (!key) {
|
||||||
|
Zotero.debug(`Document folder ${row.folderId} not found -- skipping`, 2);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
keys.push(key);
|
||||||
map.set(row.documentId, keys);
|
map.set(row.documentId, keys);
|
||||||
}
|
}
|
||||||
return map;
|
return map;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user