fix(auth): stop inserting slash into OAuth url

This commit is contained in:
Flippi 2025-11-15 22:04:55 +01:00
parent 52caf3d55c
commit f98e9dce52
No known key found for this signature in database
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> {