mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Fix registration nextLink on desktop
Another instance of detecting the file: protocol Fixes https://github.com/vector-im/riot-web/issues/8235
This commit is contained in:
parent
91c037e578
commit
25ef0913bb
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ function onNewScreen(screen) {
|
|||
// so in that instance, hardcode to use riot.im/app for now instead.
|
||||
function makeRegistrationUrl(params) {
|
||||
let url;
|
||||
if (window.location.protocol === "file:") {
|
||||
if (window.location.protocol === "vector:") {
|
||||
url = 'https://riot.im/app/#/register';
|
||||
} else {
|
||||
url = (
|
||||
|
|
Loading…
Reference in a new issue