Skip to content

Commit

Permalink
[fix] 내 팜클럽 상세조회 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
MinchoGreenT committed Jun 7, 2024
1 parent e226230 commit a5a1efa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public GetMyFarmClubVo findMyFarmClub(Long farmClubId, Long userId) {
.select(farmClub.startedAt)
.from(userFarmClub)
.join(userFarmClub.farmClub, farmClub)
.where(userFarmClub.userId.eq(userId))
.where(userFarmClub.userId.eq(userId).and(userFarmClub.farmClub.id.eq(farmClubId)))
.fetchOne();

log.info("userFarmClubCount: {}", userFarmClubCount);
Expand Down

0 comments on commit a5a1efa

Please sign in to comment.