Skip to content

Commit

Permalink
hotfix:memberCount 를 수락된 사람이 아닌 대기중인 모든 사람을 포함해서 주고 있어요 -> 수락된 사람으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
JjungminLee committed Oct 12, 2023
1 parent 16681bb commit d15fde6
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ public List<SparkResponse> getSparkListByPlaceId(Long placeId) {
.sparkType(spark.getType())
.sparkDate(spark.getSparkDate())
.capacity(spark.getCapacity())
.memberCount(
(long) spark.getMemberSparkMappingList().size())
.memberCount(spark.getMemberCount())
.price(spark.getPrice())
.hostName(spark.getHost().getName())
.hostDetail(spark.getHostDetail())
Expand Down

0 comments on commit d15fde6

Please sign in to comment.