From e97ac79e059abb644487fca7afa223b31bff9600 Mon Sep 17 00:00:00 2001 From: Ajay Bura <32841439+ajbura@users.noreply.github.com> Date: Tue, 30 Jul 2024 13:51:07 +0530 Subject: [PATCH] fix typo in user path --- src/open/clients/Cinny.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/open/clients/Cinny.js b/src/open/clients/Cinny.js index defe256..831ccc5 100644 --- a/src/open/clients/Cinny.js +++ b/src/open/clients/Cinny.js @@ -53,7 +53,7 @@ export class Cinny { switch (link.kind) { case LinkKind.User: - fragmentPath = `direct/create?userId${encodeURIComponent(link.identifier)}`; + fragmentPath = `direct/create?userId=${encodeURIComponent(link.identifier)}`; break; case LinkKind.Room: fragmentPath = `home/${encodeURIComponent(link.identifier)}`;