diff --git a/src/open/clients/Element.js b/src/open/clients/Element.js
index 56357db94e399c364eb71a447aa947b5304f1e02..8317e29dc0319959f39ceb63335aa8a30c391263 100644
--- a/src/open/clients/Element.js
+++ b/src/open/clients/Element.js
@@ -72,7 +72,7 @@ export class Element {
             if (isWebPlatform && trustedWebInstances.includes(link.webInstances[this.id])) {
                 instanceHost = link.webInstances[this.id];
             }
-            return `https://${instanceHost}/#/${fragmentPath}`;
+            return `https://${instanceHost}/#/${encodeURIComponent(fragmentPath)}`;
         } else if (platform === Platform.Linux || platform === Platform.Windows || platform === Platform.macOS) {
             return `element://vector/webapp/#/${encodeURIComponent(fragmentPath)}`;
         } else {