[java-oidc-common] branch main updated: Fix accidental recursion.
Scott Cantor
cantor.2 at osu.edu
Thu Mar 4 20:53:00 UTC 2021
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-oidc-common.
View the commit online:
http://git.shibboleth.net/view/?p=java-oidc-common.git;a=commit;h=1a1937e5dd690085d0e8f5f095e78fc3662d04bd
The following commit(s) were added to refs/heads/main by this push:
new 1a1937e Fix accidental recursion.
1a1937e is described below
commit 1a1937e5dd690085d0e8f5f095e78fc3662d04bd
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Mar 4 15:52:57 2021 -0500
Fix accidental recursion.
---
.../shibboleth/oidc/metadata/impl/ClientInformationNodeProcessor.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/impl/ClientInformationNodeProcessor.java b/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/impl/ClientInformationNodeProcessor.java
index 3b939d0..255e729 100644
--- a/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/impl/ClientInformationNodeProcessor.java
+++ b/oidc-common-metadata-impl/src/main/java/net/shibboleth/oidc/metadata/impl/ClientInformationNodeProcessor.java
@@ -547,7 +547,7 @@ public class ClientInformationNodeProcessor implements MetadataNodeProcessor {
* @return The value as URI if it was successfully parsed, <code>null</code> otherwise.
*/
protected @Nullable URI getSingleURIValue(final @Nonnull MetadataValueSAMLObject metadataValue) {
- return getSingleURIValue(metadataValue);
+ return getSingleURIValue(metadataValue.getValue());
}
/**
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list