We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 077a9fd commit 9c3786fCopy full SHA for 9c3786f
compose/neurosynth-frontend/src/pages/CurationImport/helpers/SleuthImport.convert.ts
@@ -87,7 +87,7 @@ export const sleuthIngestedStudiesToStubs = (
87
// although we know that each individual upload is deduplicated,
88
// its possible that there are multiple uploads with the same study. We want to deduplicate
89
// studies across all uploads so we only allow a unique pmid or doi
90
- if ((pmid && allIdentifiersSet.has(pmid)) || (doi && allIdentifiersSet.has(doi))) return;
+ if ((pmid && allIdentifiersSet.has(pmid)) || (doi && allIdentifiersSet.has(doi))) continue;
91
92
if (pmid) allIdentifiersSet.add(pmid);
93
if (doi) allIdentifiersSet.add(doi);
0 commit comments