[java-idp-plugin-vci] 01/02: Fix pre execution return value

Codeberg noreply at shibboleth.net
Fri Jan 9 12:05:50 UTC 2026


This is an automated email from the git hooks/post-receive script.

codeberg pushed a commit to branch dev/W3CCred
in repository java-idp-plugin-vci.

View the commit online:
https://codeberg.org/Shibboleth/java-idp-plugin-vci/commit/49fdfc18045ac2b1c06c406b6dcc9b653e771844

commit 49fdfc18045ac2b1c06c406b6dcc9b653e771844
Author: jlauros <janne.lauros at csc.fi>
AuthorDate: Fri Jan 9 14:04:32 2026 +0200

    Fix pre execution return value
---
 .../openidvci/profile/impl/FormSelectiveDisclosureJWTCredential.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openid-vci-impl/src/main/java/org/geant/shibboleth/plugin/openidvci/profile/impl/FormSelectiveDisclosureJWTCredential.java b/openid-vci-impl/src/main/java/org/geant/shibboleth/plugin/openidvci/profile/impl/FormSelectiveDisclosureJWTCredential.java
index 6fbd977..4715d6c 100644
--- a/openid-vci-impl/src/main/java/org/geant/shibboleth/plugin/openidvci/profile/impl/FormSelectiveDisclosureJWTCredential.java
+++ b/openid-vci-impl/src/main/java/org/geant/shibboleth/plugin/openidvci/profile/impl/FormSelectiveDisclosureJWTCredential.java
@@ -81,7 +81,7 @@ public class FormSelectiveDisclosureJWTCredential extends AbstractProfileAction
         if (ctx.getCredentialConfiguration() == null
                 || !"dc+sd-jwt".equals(ctx.getCredentialConfiguration().getFormat())) {
             log.debug("{} No reason to continue. Credential configuration is not 'dc+sd-jwt'", getLogPrefix());
-            return true;
+            return false;
         }
         credential = ctx.getCredentialContent();
         if (credential == null) {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list