diff --git a/packages/client/src/pages/messaging/messaging-room.vue b/packages/client/src/pages/messaging/messaging-room.vue index 41f961b85..a86ae4f8f 100644 --- a/packages/client/src/pages/messaging/messaging-room.vue +++ b/packages/client/src/pages/messaging/messaging-room.vue @@ -364,9 +364,9 @@ onBeforeUnmount(() => { function info() { if (group) { - window.open(`/my/groups/${group.id}`); + window.location.href = `/my/groups/${group.id}`; } else if (user) { - window.open(`/@${user.id}`); + window.location.href = `/@${user.id}`; } }