Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanharikr committed Dec 20, 2024
1 parent aeace40 commit 2244e39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function validateHelloParams({ param, protocolParams, helloParams, helloParamsVa
}

async function validateAuthzServer(url) {
const healthCheckUrl = new URL('/api/v1/health_check/playground', url);
const healthCheckUrl = new URL('/api/v1/health_check/playground', url).href;
try {
const res = await fetch(healthCheckUrl);
return res.status === 200;
Expand Down

0 comments on commit 2244e39

Please sign in to comment.