Merge branch 'dbkr/fix_redirect_path' into 'element'

Fix pathname for riot.im redirects

See merge request new-vector/element/element-web/matrix-react-sdk!26
pull/21833/head
J. Ryan Stinnett 2020-07-15 09:17:25 +00:00
commit 683935856b
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') {
if (url.pathname.startsWith('/app')) {
redirectUrl.hostname = 'app.element.io';
redirectUrl.pathname = '/';
} else if (url.pathname.startsWith('/staging')) {
redirectUrl.hostname = 'staging.element.io';
redirectUrl.pathname = '/';
} else if (url.pathname.startsWith('/develop')) {
redirectUrl.hostname = 'develop.element.io';
redirectUrl.pathname = '/';
}
return redirectUrl.href;