Skip to content
Snippets Groups Projects
Unverified Commit 1839eaae authored by Andrew Ryan's avatar Andrew Ryan Committed by GitHub
Browse files

Remove url encoding from android element:// links

#248 introduced url encoding for the android element:// link but this caused a regression because the encoded url cannot be picked up by android's filters.  See #259 

This returns the android url to its previous form which still worked.
parent a39c4053
Branches
Tags
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