mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-22 11:05:03 +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 {
|
||||
return window.location.origin;
|
||||
return window.location.href;
|
||||
}
|
||||
|
||||
normalizeUrl(): void {
|
||||
// Remove any queryParameters from the URL
|
||||
// Gets rid of the loginToken after SSO
|
||||
this._history.replaceUrlSilently(`${window.location.origin}/${window.location.hash}`);
|
||||
const url = new URL(window.location.href);
|
||||
|
||||
// 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