Skip to content

Commit

Permalink
Merge pull request #145 from Kusitms-29th-MeetUp-H/feat/global
Browse files Browse the repository at this point in the history
[fix]Socket Room생성자 오류
  • Loading branch information
qogustj authored May 22, 2024
2 parents 7c9029b + fc9dc87 commit 1206427
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,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 1206427

Please sign in to comment.