Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Glen Maddern
05fa1e1245 Use 127.0.0.1 everywhere _except_ as a redirect_uri for the client registration 2025-05-06 09:00:58 +10:00

View file

@ -37,7 +37,7 @@ export class NodeOAuthClientProvider implements OAuthClientProvider {
}
get redirectUrl(): string {
return `http://127.0.0.1:${this.options.callbackPort}${this.callbackPath}`
return `http://localhost:${this.options.callbackPort}${this.callbackPath}`
}
get clientMetadata() {