Merge pull request #248 from matrix-org/url-escape-fragment
Apply URL encoding to the fragmentPath
This commit is contained in:
commit
ded399d35d
1 changed files with 3 additions and 3 deletions
|
@ -72,11 +72,11 @@ export class Element {
|
|||
if (isWebPlatform && trustedWebInstances.includes(link.webInstances[this.id])) {
|
||||
instanceHost = link.webInstances[this.id];
|
||||
}
|
||||
return `https://${instanceHost}/#/${fragmentPath}`;
|
||||
return `https://${instanceHost}/#/${encodeURIComponent(fragmentPath)}`;
|
||||
} else if (platform === Platform.Linux || platform === Platform.Windows || platform === Platform.macOS) {
|
||||
return `element://vector/webapp/#/${fragmentPath}`;
|
||||
return `element://vector/webapp/#/${encodeURIComponent(fragmentPath)}`;
|
||||
} else {
|
||||
return `element://${fragmentPath}`;
|
||||
return `element://${encodeURIComponent(fragmentPath)}`;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue