Skip to content
Snippets Groups Projects
Commit 9b23fd73 authored by Matthieu Fesselier's avatar Matthieu Fesselier
Browse files

bugfix: change id token structure

parent 426a7ea8
No related branches found
Tags v0.15.0 v0.15.0-beta.13
2 merge requests!58update: switch to solid-client-authn-js,!56bugfix: change id token structure
Pipeline #11087 passed with stage
in 21 seconds
......@@ -201,7 +201,7 @@ class SIBAuth extends HTMLElement {
const response = await fetch(`${this.getFavoriteProvider().attributes['data-authority'].value}check-session-headers/`);
const body = await response.json();
if (!body) return null;
return `${body.Authorization}|SEPARATOR|${body.dpop}`;
return `${body.Authorization}SEPARATOR${body.dpop}`;
}
/** @function
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment