Don't break when DOI is not a string
This commit is contained in:
parent
5f4bb73564
commit
acd6d38a1e
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ Zotero.Duplicates.prototype._findDuplicates = function () {
|
|||
var doiCache = {};
|
||||
if (rows) {
|
||||
for each(var row in rows) {
|
||||
doiCache[row.itemID] = row.value.trim();
|
||||
doiCache[row.itemID] = row.value.toString().trim();
|
||||
}
|
||||
}
|
||||
processRows();
|
||||
|
|
Loading…
Reference in a new issue