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:
Dan Stillman 2018-06-11 12:16:09 -04:00
parent bd5f2525dc
commit cfbb3d3d47

View File

@ -428,7 +428,12 @@ Zotero_Import_Mendeley.prototype._getDocumentCollections = async function (group
for (let row of rows) {
let keys = map.get(row.documentId);
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);
}
return map;