Fix pathname for riot.im redirects

Need to redirect to root on x.element.io
pull/21833/head
David Baker 2020-07-15 10:16:04 +01:00
parent aea3a8de8d
commit e8700392b5
1 changed files with 3 additions and 0 deletions

View File

@ -40,10 +40,13 @@ function getRedirectUrl(url): string {
} else if (url.hostname === 'riot.im') { } else if (url.hostname === 'riot.im') {
if (url.pathname.startsWith('/app')) { if (url.pathname.startsWith('/app')) {
redirectUrl.hostname = 'app.element.io'; redirectUrl.hostname = 'app.element.io';
redirectUrl.pathname = '/';
} else if (url.pathname.startsWith('/staging')) { } else if (url.pathname.startsWith('/staging')) {
redirectUrl.hostname = 'staging.element.io'; redirectUrl.hostname = 'staging.element.io';
redirectUrl.pathname = '/';
} else if (url.pathname.startsWith('/develop')) { } else if (url.pathname.startsWith('/develop')) {
redirectUrl.hostname = 'develop.element.io'; redirectUrl.hostname = 'develop.element.io';
redirectUrl.pathname = '/';
} }
return redirectUrl.href; return redirectUrl.href;