Merge pull request #1065 from fllppi/fix/oidc-redirect

This commit is contained in:
Enno Gelhaus 2025-11-15 22:15:54 +01:00 committed by GitHub
commit 85a410256a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ export class OauthProvider implements ProvidersInterface {
redirect_uri: `${this.frontendUrl}/settings`,
});
return `${this.authUrl}/?${params.toString()}`;
return `${this.authUrl}?${params.toString()}`;
}
async getToken(code: string): Promise<string> {