We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abcf91b commit c5fcba4Copy full SHA for c5fcba4
src/client/auth.ts
@@ -320,8 +320,8 @@ async function fetchWithCorsRetry(
320
/**
321
* Constructs the well-known path for OAuth metadata discovery
322
*/
323
-function buildWellKnownPath(wellKnownPath: string, pathname: string): string {
324
- let wellKnownPath = `/.well-known/${wellKnownPath}${pathname}`;
+function buildWellKnownPath(wellKnownPrefix: string, pathname: string): string {
+ let wellKnownPath = `/.well-known/${wellKnownPrefix}${pathname}`;
325
if (pathname.endsWith('/')) {
326
// Strip trailing slash from pathname to avoid double slashes
327
wellKnownPath = wellKnownPath.slice(0, -1);
0 commit comments