diff options
author | Thomas <> | 2022-03-11 07:43:07 +0100 |
---|---|---|
committer | Thomas <> | 2022-03-11 07:43:07 +0100 |
commit | 7dd718a0dcc466d5aedeef0a9b3e70005d41ab17 (patch) | |
tree | 065cc9d0438b785fa968e9b1783c635fd8f955c4 /modules/authmodule-eIDAS-v2/src/main | |
parent | 2119f7613a04651d7cc1cb9a8c7ecdc8556d07d9 (diff) | |
download | National_eIDAS_Gateway-7dd718a0dcc466d5aedeef0a9b3e70005d41ab17.tar.gz National_eIDAS_Gateway-7dd718a0dcc466d5aedeef0a9b3e70005d41ab17.tar.bz2 National_eIDAS_Gateway-7dd718a0dcc466d5aedeef0a9b3e70005d41ab17.zip |
fix(matching): change process-condition order to evaluate 'changeLanguage' first
Diffstat (limited to 'modules/authmodule-eIDAS-v2/src/main')
-rw-r--r-- | modules/authmodule-eIDAS-v2/src/main/resources/eIDAS.Authentication.process.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/authmodule-eIDAS-v2/src/main/resources/eIDAS.Authentication.process.xml b/modules/authmodule-eIDAS-v2/src/main/resources/eIDAS.Authentication.process.xml index 4e5b077e..d72d6ac7 100644 --- a/modules/authmodule-eIDAS-v2/src/main/resources/eIDAS.Authentication.process.xml +++ b/modules/authmodule-eIDAS-v2/src/main/resources/eIDAS.Authentication.process.xml @@ -37,7 +37,7 @@ <!-- alternative matching modes --> <pd:Transition from="generateOtherLoginMethodGuiTask" to="receiveOtherLoginMethodGuiResponseTask" /> - <pd:Transition conditionExpression="ctx['TASK_GenerateOtherLoginMethodGuiTask'] or ctx['changeLanguage']" + <pd:Transition conditionExpression="ctx['changeLanguage'] or ctx['TASK_GenerateOtherLoginMethodGuiTask']" from="receiveOtherLoginMethodGuiResponseTask" to="generateOtherLoginMethodGuiTask" /> <pd:Transition conditionExpression="ctx['TASK_GenerateAlternativeEidasAuthn']" from="receiveOtherLoginMethodGuiResponseTask" to="generateAlternativeEidasAuthnRequest" /> |