diff --git a/src/open/clients/Client.js b/src/open/clients/Client.js
index 4393d71ea55954561440ebdd71653a00b554fcd6..fdee4315604efef572236fda9c854741ccf2d26d 100644
--- a/src/open/clients/Client.js
+++ b/src/open/clients/Client.js
@@ -10,6 +10,7 @@ export class Client {
     get platforms() { return this.data.platforms; }
 
     get icon() { return "images/client-icons/"+this.data.icon; }
+    get appleAssociatedAppId() { return this.data.appleAssociatedAppId; }
     get name() {return this.data.name; }
     get description() { return this.data.description; }
     get homepage() { return this.data.homepage; }
diff --git a/src/open/clients/Element.js b/src/open/clients/Element.js
index 5c3099a18768be5da627fab1b4b76400ab6d60e8..a4b4bcf94da2bff4bc77c011740808a7b6bbc81e 100644
--- a/src/open/clients/Element.js
+++ b/src/open/clients/Element.js
@@ -35,8 +35,6 @@ export class Element extends Client {
         super(data);
     }
 
-    get appleAssociatedAppId() { return "7J4U792NQT.im.vector.app"; }
-
     getDeepLink(platform, link) {
         let fragmentPath;
         switch (link.kind) {