Skip to content

Commit

Permalink
Merge pull request #144 from Kusitms-29th-MeetUp-H/feat/global
Browse files Browse the repository at this point in the history
[fix]Main Room 생성자 오류
  • Loading branch information
qogustj authored May 22, 2024
2 parents e16804a + 2c63cef commit 7c9029b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ public void addChatContent(ChatContent content) {
public void addChatRoom(ChatUser chatUser) {
this.chatUserList.add(chatUser);
}
public Room(String roomId, String roomName, String roomSession, String syncName, List<ChatUser> chatUserList, List<ChatContent> chatContentList) {
public Room(String roomId, String roomName, String roomSession, String syncName, String image, List<ChatUser> chatUserList, List<ChatContent> chatContentList) {
this.roomId = roomId;
this.image = image;
this.roomName = roomName;
this.roomSession = roomSession;
this.syncName = syncName;
Expand Down

0 comments on commit 7c9029b

Please sign in to comment.