1
0
Fork 0

Fix: TypeScript Error got not Casted

pull/983/head
Frank Lemanschik 2022-01-21 16:23:28 +01:00
parent daf8bb0060
commit 2826bcca07
No known key found for this signature in database
GPG Key ID: 19E7D7223BE11164
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ export class OidcClient {
setSecret(id_token)
return id_token
} catch (error) {
throw new Error(`Error message: ${error.message}`)
throw new Error(`Error message: ${(error as Error).message}`)
}
}
}