Skip to content

Commit

Permalink
hotfix: nowMemberCount 이벤트 발행 시 +1하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
soyesenna committed Feb 5, 2025
1 parent a35bb50 commit 5656421
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static MatchMemberJoinedEvent of(Long roomId, Long memberId, String topic
.memberId(memberId)
.topic(topic)
.chattingRoomId(chattingRoomId)
.nowMemberCount(nowMemberCount)
.nowMemberCount(nowMemberCount + 1)
.maxCapacity(autoMaxCapacity)
.build();
}
Expand Down

0 comments on commit 5656421

Please sign in to comment.