Skip to content

Commit

Permalink
Fix path issue w/ issuer
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Apr 24, 2024
1 parent 8746fa4 commit b0501b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OktaJWTVerifier.jl
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function fetch_metadata(url::String)
end

function get_metadata(j::Verifier)
metadata_url = j.issuer * j.discovery_well_known_url
metadata_url = joinpath(j.issuer, j.discovery_well_known_url)
return get!(j.metadata_cache, metadata_url) do
fetch_metadata(metadata_url)
end
Expand Down

0 comments on commit b0501b0

Please sign in to comment.