Skip to content

Commit

Permalink
Merge pull request #416 from /issues/415-ConfirmRecoveryResponsePayload
Browse files Browse the repository at this point in the history
Fix #415: Reflect changes of ConfirmRecoveryResponsePayload
  • Loading branch information
banterCZ authored Feb 8, 2024
2 parents 82c917b + 0bf8c1c commit 109870a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public StepContext<ConfirmRecoveryCodeStepModel, EciesEncryptedResponse> prepare
public void processResponse(StepContext<ConfirmRecoveryCodeStepModel, EciesEncryptedResponse> stepContext) throws Exception {
final ConfirmRecoveryResponsePayload confirmResponsePayload = decryptResponse(stepContext, ConfirmRecoveryResponsePayload.class);
Map<String, Object> objectMap = new HashMap<>();
objectMap.put("alreadyConfirmed", confirmResponsePayload.getAlreadyConfirmed());
objectMap.put("alreadyConfirmed", confirmResponsePayload.isAlreadyConfirmed());

stepContext.getStepLogger().writeItem(
getStep().id() + "-confirmation-done",
Expand Down

0 comments on commit 109870a

Please sign in to comment.