Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
overthestream committed Dec 19, 2023
2 parents 1b0a8e8 + 40883e3 commit 27fc84a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dtos/chat.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 27fc84a

Please sign in to comment.