Merge pull request '콘텐츠 댓글 푸시 대상자 조회' (#245) from test into main

Reviewed-on: #245
This commit is contained in:
klaus 2024-12-02 15:06:49 +00:00
commit b735e861d0
1 changed files with 3 additions and 2 deletions

View File

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