fix typo in user path
This commit is contained in:
parent
0123ab4988
commit
e97ac79e05
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ export class Cinny {
|
||||||
|
|
||||||
switch (link.kind) {
|
switch (link.kind) {
|
||||||
case LinkKind.User:
|
case LinkKind.User:
|
||||||
fragmentPath = `direct/create?userId${encodeURIComponent(link.identifier)}`;
|
fragmentPath = `direct/create?userId=${encodeURIComponent(link.identifier)}`;
|
||||||
break;
|
break;
|
||||||
case LinkKind.Room:
|
case LinkKind.Room:
|
||||||
fragmentPath = `home/${encodeURIComponent(link.identifier)}`;
|
fragmentPath = `home/${encodeURIComponent(link.identifier)}`;
|
||||||
|
|
Loading…
Reference in a new issue