diff options
author | Thomas <> | 2022-08-01 13:40:11 +0200 |
---|---|---|
committer | Thomas <> | 2022-08-01 13:40:11 +0200 |
commit | b32ad3b192e00b39b6a7dd61f46391fc6eb3fdc1 (patch) | |
tree | a42640496242d9e7ce337b12344b3c99fb71fbc7 /modules/authmodule-eIDAS-v2/src/main | |
parent | 6b4e59234163c449c0e66e82ee9ed87785e7702c (diff) | |
download | National_eIDAS_Gateway-b32ad3b192e00b39b6a7dd61f46391fc6eb3fdc1.tar.gz National_eIDAS_Gateway-b32ad3b192e00b39b6a7dd61f46391fc6eb3fdc1.tar.bz2 National_eIDAS_Gateway-b32ad3b192e00b39b6a7dd61f46391fc6eb3fdc1.zip |
fix(eidas): unset flag on execution-context that probibits create-new-ERnP-entry operation
Diffstat (limited to 'modules/authmodule-eIDAS-v2/src/main')
-rw-r--r-- | modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveOtherLoginMethodGuiResponseTask.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveOtherLoginMethodGuiResponseTask.java b/modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveOtherLoginMethodGuiResponseTask.java index 03414f9e..ec858116 100644 --- a/modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveOtherLoginMethodGuiResponseTask.java +++ b/modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveOtherLoginMethodGuiResponseTask.java @@ -143,6 +143,7 @@ public class ReceiveOtherLoginMethodGuiResponseTask extends AbstractLocaleAuthSe case ADD_ME_AS_NEW: executionContext.put(Constants.TRANSITION_TO_CREATE_NEW_ERNP_ENTRY_TASK, true); + executionContext.put(Constants.TRANSITION_TO_REQUESTING_NEW_ERNP_ENTRY_TASK, false); return; default: |