Skip to content

Commit

Permalink
SSO: Fix issuer.
Browse files Browse the repository at this point in the history
  • Loading branch information
tkhamez committed Nov 3, 2023
1 parent b77b7c0 commit 16e2ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/sso/eve-jwt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function parseEveJWT(token: string, clientId: string): EveJWT {
typeof parsed.owner !== 'string' ||
typeof parsed.exp !== 'number' ||
parsed.azp !== clientId ||
parsed.iss !== 'login.eveonline.com'
parsed.iss !== 'https://login.eveonline.com'
) {
throw new Error('invalid Eve JWT')
}
Expand Down

0 comments on commit 16e2ec5

Please sign in to comment.