We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5413480 commit d5fdb35Copy full SHA for d5fdb35
src/open/clients/Client.js
@@ -10,6 +10,7 @@ export class Client {
10
get platforms() { return this.data.platforms; }
11
12
get icon() { return "images/client-icons/"+this.data.icon; }
13
+ get appleAssociatedAppId() { return this.data.appleAssociatedAppId; }
14
get name() {return this.data.name; }
15
get description() { return this.data.description; }
16
get homepage() { return this.data.homepage; }
src/open/clients/Element.js
@@ -35,8 +35,6 @@ export class Element extends Client {
35
super(data);
36
}
37
38
- get appleAssociatedAppId() { return "7J4U792NQT.im.vector.app"; }
39
-
40
getDeepLink(platform, link) {
41
let fragmentPath;
42
switch (link.kind) {
0 commit comments