Skip to content

Commit 0d24642

Browse files
authored
fix: Bug where exception flag was being called instead of blocked flag (#969)
1 parent ec335c3 commit 0d24642

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

application/CohortManager/src/Functions/Shared/Model/Participant.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public Participant(ParticipantManagement pm)
2424
ReasonForRemovalEffectiveFromDate = pm.ReasonForRemovalDate.ToString();
2525
BusinessRuleVersion = pm.BusinessRuleVersion;
2626
ExceptionFlag = pm.ExceptionFlag.ToString();
27-
BlockedFlag = pm.ExceptionFlag.ToString();
27+
BlockedFlag = pm.BlockedFlag.ToString();
2828
RecordInsertDateTime = pm.RecordInsertDateTime.ToString();
2929
RecordUpdateDateTime = pm.RecordUpdateDateTime.ToString();
3030

0 commit comments

Comments
 (0)