Skip to content

Commit

Permalink
Merge pull request #191 from MORE-Platform/436-wrong-participant-status
Browse files Browse the repository at this point in the history
Fix parameter order in updateParticipantStatus call
  • Loading branch information
janoliver20 authored Dec 11, 2024
2 parents b4ab59a + 8ec5296 commit eb40ded
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public void clearCredentials(String apiId) {
final long studyId = rs.getLong("study_id");
final int participantId = rs.getInt("participant_id");
withdrawConsent(studyId, participantId);
updateParticipantStatus(studyId, participantId, 0,
updateParticipantStatus(studyId, 0, participantId,
"active", "abandoned");
}
);
Expand Down

0 comments on commit eb40ded

Please sign in to comment.