Skip to content

Commit 9713ba9

Browse files
authored
Merge pull request #69 from oodd-team/OD-164
chatRoomList 응답 변수명 수정
2 parents b9871a6 + db53759 commit 9713ba9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/chat-room/chat-room.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ export class ChatRoomService {
3838
room.chatMessages.length > 0 ? room.chatMessages[0] : null; // 가장 최근 메시지 선택
3939

4040
return {
41-
chatRoomId: room.id,
41+
id: room.id,
4242
otherUser: {
4343
id: otherUser.id,
4444
nickname: otherUser.nickname,
45-
profileUrl: otherUser.profilePictureUrl,
45+
profilePictureUrl: otherUser.profilePictureUrl,
4646
},
4747
latestMessage: latestMessage,
4848
};

0 commit comments

Comments
 (0)