Skip to content

Commit

Permalink
[fix]Main Room 생성자 오류
Browse files Browse the repository at this point in the history
  • Loading branch information
qogustj committed May 22, 2024
1 parent cc0a5b7 commit 2c63cef
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 2c63cef

Please sign in to comment.