fix: missing logo images on fresh installation

This commit is contained in:
Elias Schneider
2023-12-29 18:12:02 +01:00
parent 7a301b455c
commit 6fb31abd84
2 changed files with 2 additions and 2 deletions

View File

@@ -108,7 +108,7 @@ export abstract class GenericOidcProvider implements OAuthProvider<OidcToken> {
async getUserInfo(
token: OAuthToken<OidcToken>,
query: OAuthCallbackDto,
claim?: string
claim?: string,
): Promise<OAuthSignInDto> {
const idTokenData = this.decodeIdToken(token.idToken);
// maybe it's not necessary to verify the id token since it's directly obtained from the provider