adjust desktop element:/ schema

This commit is contained in:
Bruno Windels 2020-12-03 11:07:15 +01:00
parent fda01e0bc4
commit 32fdb6c9c3
1 changed files with 5 additions and 3 deletions

View File

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