From ddd46d585e854f73b3e59c84038aae01fb1dfca7 Mon Sep 17 00:00:00 2001 From: Klaus Date: Tue, 25 Nov 2025 18:05:08 +0900 Subject: [PATCH] =?UTF-8?q?feat(creator-cheers):=20=ED=8C=AC=20Talk=20?= =?UTF-8?q?=EC=9D=91=EC=9B=90=EA=B8=80=20=EC=A1=B0=ED=9A=8C=EC=8B=9C=20?= =?UTF-8?q?=EA=B2=B0=EA=B3=BC=EC=97=90=20=EC=96=B8=EC=96=B4=20=EC=BD=94?= =?UTF-8?q?=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../co/vividnext/sodalive/explorer/ExplorerQueryRepository.kt | 2 ++ .../kr/co/vividnext/sodalive/explorer/GetCheersResponse.kt | 1 + 2 files changed, 3 insertions(+) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerQueryRepository.kt b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerQueryRepository.kt index 4c1bacd..dfce676 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerQueryRepository.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerQueryRepository.kt @@ -488,6 +488,7 @@ class ExplorerQueryRepository( "$cloudFrontHost/profile/default-profile.png" }, content = it.cheers, + languageCode = it.languageCode, date = date.format(DateTimeFormatter.ofPattern("yyyy.MM.dd E hh:mm a")), replyList = it.children.asSequence() .map { cheers -> @@ -505,6 +506,7 @@ class ExplorerQueryRepository( "$cloudFrontHost/profile/default-profile.png" }, content = cheers.cheers, + languageCode = cheers.languageCode, date = replyDate.format(DateTimeFormatter.ofPattern("yyyy.MM.dd E hh:mm a")), replyList = listOf() ) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCheersResponse.kt b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCheersResponse.kt index 5465295..5192ca7 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCheersResponse.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCheersResponse.kt @@ -11,6 +11,7 @@ data class GetCheersResponseItem( val nickname: String, val profileUrl: String, val content: String, + val languageCode: String?, val date: String, val replyList: List )