diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/AudioContentCommentRepository.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/AudioContentCommentRepository.kt index b49c209..09ef520 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/AudioContentCommentRepository.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/AudioContentCommentRepository.kt @@ -85,6 +85,7 @@ class AudioContentCommentQueryRepositoryImpl( audioContentComment.member.nickname, audioContentComment.member.profileImage.prepend("/").prepend(cloudFrontHost), audioContentComment.comment, + audioContentComment.languageCode, audioContentComment.isSecret, audioContentComment.donationCan.coalesce(0), formattedDate, @@ -166,6 +167,7 @@ class AudioContentCommentQueryRepositoryImpl( audioContentComment.member.nickname, audioContentComment.member.profileImage.prepend("/").prepend(cloudFrontHost), audioContentComment.comment, + audioContentComment.languageCode, audioContentComment.isSecret, audioContentComment.donationCan.coalesce(0), formattedDate, diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/GetAudioContentCommentListResponse.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/GetAudioContentCommentListResponse.kt index 37bd46a..b0d1160 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/GetAudioContentCommentListResponse.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/GetAudioContentCommentListResponse.kt @@ -13,6 +13,7 @@ data class GetAudioContentCommentListItem @QueryProjection constructor( val nickname: String, val profileUrl: String, val comment: String, + val languageCode: String?, val isSecret: Boolean, val donationCan: Int, val date: String,