Skip to content

Commit

Permalink
fix: 참여자 목록 조회 API에서 totalCount 반환하지 않는 이슈 해결 (#400)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChooSeoyeon authored Aug 20, 2024
1 parent bca198a commit e99d2db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
public record ParticipantCountResponseItem(int currentCount, int totalCount) {

public ParticipantCountResponseItem(OfferingEntity offering) {
this(offering.getCurrentCount(), offering.getCurrentCount());
this(offering.getCurrentCount(), offering.getTotalCount());
}
}

0 comments on commit e99d2db

Please sign in to comment.