Skip to content

Commit

Permalink
Don't check ISSN when considering duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
tnajdek committed Aug 9, 2021
1 parent dc464f2 commit 9af8e79
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/js/utils.js
Expand Up @@ -410,7 +410,6 @@ const isDuplicate = (newItem, items = []) => {
const result = items.find(item =>
(item.ISBN && (item.ISBN === newItem.ISBN)) ||
(item.DOI && (item.DOI === newItem.DOI)) ||
(item.ISSN && (item.ISSN === newItem.ISSN)) ||
(item.url && (item.url === newItem.url)) ||
(item.title && (item.title === newItem.title))
);
Expand Down

0 comments on commit 9af8e79

Please sign in to comment.