Skip to content

Commit

Permalink
Fixes a typo in the server URL.
Browse files Browse the repository at this point in the history
We accidentally had //: instead of ://.

Tested by:
- Manual testing
- ./gradlew check

Signed-off-by: Kevin Deus <[email protected]>
  • Loading branch information
kdeus committed Nov 26, 2024
1 parent 70121e9 commit 264c00f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class FunkeProofingState(
} else {
if (openid4VpRequest != null) {
val uri = URI(authorizationMetadata.authorizationChallengeEndpoint!!)
val origin = uri.scheme + "//:" + uri.authority
val origin = uri.scheme + "://" + uri.authority
list.add(EvidenceRequestOpenid4Vp(origin, openid4VpRequest!!))
}
list.add(EvidenceRequestWeb(authorizeUrl, proofingInfo.landingUrl))
Expand Down

0 comments on commit 264c00f

Please sign in to comment.