크리에이터 커뮤니티 #102

Merged
klaus merged 18 commits from test into main 2023-12-21 15:10:56 +00:00
1 changed files with 36 additions and 24 deletions
Showing only changes of commit 8c5b7b811d - Show all commits

View File

@ -149,15 +149,19 @@ class CreatorCommunityService(
} else { } else {
0 0
} }
val commentList = commentRepository.findByPostId( val commentList = if (it.isCommentAvailable) {
cloudFrontHost = imageHost, commentRepository.findByPostId(
timezone = timezone, cloudFrontHost = imageHost,
id = it.id!!, timezone = timezone,
offset = 0, id = it.id!!,
limit = 1 offset = 0,
) limit = 1
)
} else {
listOf()
}
val firstComment = if (commentList.isNotEmpty()) { val firstComment = if (it.isCommentAvailable && commentList.isNotEmpty()) {
commentList[0] commentList[0]
} else { } else {
null null
@ -206,15 +210,19 @@ class CreatorCommunityService(
} else { } else {
0 0
} }
val commentList = commentRepository.findByPostId( val commentList = if (post.isCommentAvailable) {
cloudFrontHost = imageHost, commentRepository.findByPostId(
timezone = timezone, cloudFrontHost = imageHost,
id = post.id!!, timezone = timezone,
offset = 0, id = post.id!!,
limit = 1 offset = 0,
) limit = 1
)
} else {
listOf()
}
val firstComment = if (commentList.isNotEmpty()) { val firstComment = if (post.isCommentAvailable && commentList.isNotEmpty()) {
commentList[0] commentList[0]
} else { } else {
null null
@ -374,15 +382,19 @@ class CreatorCommunityService(
} else { } else {
0 0
} }
val commentList = commentRepository.findByPostId( val commentList = if (it.isCommentAvailable) {
cloudFrontHost = imageHost, commentRepository.findByPostId(
timezone = timezone, cloudFrontHost = imageHost,
id = it.id!!, timezone = timezone,
offset = 0, id = it.id!!,
limit = 1 offset = 0,
) limit = 1
)
} else {
listOf()
}
val firstComment = if (commentList.isNotEmpty()) { val firstComment = if (it.isCommentAvailable && commentList.isNotEmpty()) {
commentList[0] commentList[0]
} else { } else {
null null