mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 01:05:42 +03:00
Update native OIDC callback url to be RFC8252 compliant
By switching the double slash for a single one Fixes https://github.com/element-hq/element-desktop/issues/1889 Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
787feca6a4
commit
994fcd6319
1 changed files with 6 additions and 0 deletions
|
@ -472,6 +472,12 @@ export default class ElectronPlatform extends VectorBasePlatform {
|
|||
public getOidcCallbackUrl(): URL {
|
||||
const url = super.getOidcCallbackUrl();
|
||||
url.protocol = "io.element.desktop";
|
||||
// Trim the double slash into a single slash to comply with https://datatracker.ietf.org/doc/html/rfc8252#section-7.1
|
||||
// Chrome seems to have a strange issue where non-standard protocols prevent URL object mutations on pathname
|
||||
// field, so we cannot mutate `pathname` reliably and instead have to rewrite the href manually.
|
||||
if (url.pathname.startsWith("//")) {
|
||||
url.href = url.href.replace(url.pathname, url.pathname.slice(1));
|
||||
}
|
||||
return url;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue