Skip to content
Snippets Groups Projects
Unverified Commit 3a8cc2d4 authored by Bruno Windels's avatar Bruno Windels Committed by GitHub
Browse files

Merge pull request #260 from AndrewRyanChama/patch-1

Remove url encoding from android element:// links
parents a39c4053 1839eaae
No related branches found
No related tags found
No related merge requests found
...@@ -76,7 +76,7 @@ export class Element { ...@@ -76,7 +76,7 @@ export class Element {
} else if (platform === Platform.Linux || platform === Platform.Windows || platform === Platform.macOS) { } else if (platform === Platform.Linux || platform === Platform.Windows || platform === Platform.macOS) {
return `element://vector/webapp/#/${encodeURIComponent(fragmentPath)}`; return `element://vector/webapp/#/${encodeURIComponent(fragmentPath)}`;
} else { } else {
return `element://${encodeURIComponent(fragmentPath)}`; return `element://${fragmentPath}`;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment