콘텐츠 댓글 푸시 대상자 조회

- audioContentComment 조회 대상에 추가
This commit is contained in:
Klaus 2024-12-03 00:01:17 +09:00
parent 368c647151
commit c7513e9045
1 changed files with 3 additions and 2 deletions

View File

@ -221,8 +221,9 @@ class AudioContentCommentQueryRepositoryImpl(
member.container
)
)
.from(audioContent)
.innerJoin(audioContent.member, member)
.from(audioContentComment)
.innerJoin(audioContentComment.audioContent, audioContent)
.innerJoin(audioContentComment.member, member)
.where(where)
.fetch()
}