fix(auth): stop inserting slash into OAuth url
This commit is contained in:
parent
52caf3d55c
commit
f98e9dce52
|
|
@ -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> {
|
||||
|
|
|
|||
Loading…
Reference in New Issue