Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/AuthorizationCodeGrant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const onIncomingRedirect = async (client_details?: ClientDetails, database?: Ses
const authorization_code = url.searchParams.get("code");
// if no code, session remains unauthenticated at this point
if (authorization_code === null) {
return { clientDetails: client_details } as SessionInformation;;
return { clientDetails: client_details } as SessionInformation;
}
// RFC 9207 issuer check
const idp = sessionStorage.getItem("idp");
Expand Down