Merge pull request #260 from AndrewRyanChama/patch-1

Remove url encoding from android element:// links
This commit is contained in:
Bruno Windels
2022-03-09 10:56:36 +01:00
committed by GitHub
+1 -1
View File
@@ -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}`;
} }
} }