mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-22 19:14:52 +01:00
Merge pull request #950 from Automattic/fix-sso-query-params
Fix SSO query params
This commit is contained in:
commit
b42e497258
@ -149,12 +149,15 @@ export class URLRouter<T extends {session: string | boolean}> implements IURLRou
|
|||||||
}
|
}
|
||||||
|
|
||||||
createSSOCallbackURL(): string {
|
createSSOCallbackURL(): string {
|
||||||
return window.location.origin;
|
return window.location.href;
|
||||||
}
|
}
|
||||||
|
|
||||||
normalizeUrl(): void {
|
normalizeUrl(): void {
|
||||||
// Remove any queryParameters from the URL
|
const url = new URL(window.location.href);
|
||||||
// Gets rid of the loginToken after SSO
|
|
||||||
this._history.replaceUrlSilently(`${window.location.origin}/${window.location.hash}`);
|
// Remove the loginToken query parameter from the URL after SSO.
|
||||||
|
url.searchParams.delete("loginToken");
|
||||||
|
|
||||||
|
this._history.replaceUrlSilently(url.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user