1
0
Fork 0

async call fix

pull/887/head
Sourav Chanduka 2021-08-10 11:05:53 +05:30
parent f55900670f
commit aa1968c9e9
1 changed files with 2 additions and 2 deletions

View File

@ -287,7 +287,7 @@ export function getState(name: string): string {
return process.env[`STATE_${name}`] || '' return process.env[`STATE_${name}`] || ''
} }
export function getIDToken(aud: string): Promise<string> { export async function getIDToken(aud: string): Promise<string> {
let oidcClient = new OidcClient() let oidcClient = new OidcClient()
return oidcClient.getIDToken(aud) return await oidcClient.getIDToken(aud)
} }