fix: 유저의 행동 데이터 기록시 주문한 콘텐츠에 댓글을 쓰는 것을 판단하기 위해 주문 정보 조회시 id 내림차순으로 하여 가장 최근 주문정보를 가져오도록 수정

This commit is contained in:
Klaus 2025-05-19 10:49:16 +09:00
parent 3079998a5d
commit 107e8fce55
1 changed files with 1 additions and 0 deletions

View File

@ -291,6 +291,7 @@ class OrderQueryRepositoryImpl(
order.audioContent.id.eq(contentId),
order.createdAt.after(createdAt)
)
.orderBy(order.id.desc())
.fetchFirst()
}
}