From 40883e3c8fb66c04bb2d8553239d91a5001cf350 Mon Sep 17 00:00:00 2001 From: kyeah <39901387+kyeahxx19@users.noreply.github.com> Date: Mon, 18 Dec 2023 07:38:07 +0900 Subject: [PATCH] Update chat.dto.ts --- src/dtos/chat.dto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dtos/chat.dto.ts b/src/dtos/chat.dto.ts index 5475d91..4c25d7a 100644 --- a/src/dtos/chat.dto.ts +++ b/src/dtos/chat.dto.ts @@ -148,7 +148,7 @@ export class RoomChatDto { otherImage: othereSocketUser?.userImage ?? null, hasRead: otherUser.hasRead, blur: otherUser.blur ?? 1, - connected: othereSocketUser.isDeleted ? true : roomInfo.connected ?? true, + connected: othereSocketUser.isDeleted ? false : roomInfo.connected ?? true, connectedAt: roomInfo.connectedAt ?? null, blurChange: blurChange ?? null, chats: chattings,