Skip to content

Commit 147738c

Browse files
committed
Bugfix to PerformManualIdrStepsTask
1 parent 90d9f04 commit 147738c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SivStudies/src/org/labkey/sivstudies/etl/PerformManualIdrStepsTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ private void updateAnchorDates(PipelineJob pipelineJob, String eventType, String
197197
}
198198
sourceRecords.get(id).add(date);
199199

200-
if (!existingRecords.containsKey(id) | !existingRecords.get(id).contains(date))
200+
if (!sourceRecords.containsKey(id) || !sourceRecords.get(id).contains(date))
201201
{
202202
toInsert.add(new CaseInsensitiveHashMap<>(Map.of(
203203
"subjectId", id,

0 commit comments

Comments
 (0)