adjust desktop element:/ schema

This commit is contained in:
Bruno Windels 2020-12-03 11:07:15 +01:00
parent fda01e0bc4
commit 32fdb6c9c3

View File

@ -57,9 +57,11 @@ export class Element {
} }
if (platform === Platform.DesktopWeb || platform === Platform.MobileWeb || platform === Platform.iOS) { if (platform === Platform.DesktopWeb || platform === Platform.MobileWeb || platform === Platform.iOS) {
return `https://app.element.io/#/${fragmentPath}`; return `https://app.element.io/#/${fragmentPath}`;
} else if (platform === Platform.Linux || platform === Platform.Windows || platform === Platform.macOS) {
return `element://vector/webapp/#/${fragmentPath}`;
} else { } else {
return `element://${fragmentPath}`; return `element://${fragmentPath}`;
} }
} }
getLinkInstructions(platform, link) {} getLinkInstructions(platform, link) {}