From d32f503633f2977d89ef4e9c67de6c9a4f6306bc Mon Sep 17 00:00:00 2001 From: Klaus Date: Mon, 12 Feb 2024 17:09:05 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BB=A4=EB=AE=A4=EB=8B=88=ED=8B=B0=20?= =?UTF-8?q?=EA=B2=8C=EC=8B=9C=EB=AC=BC=20=EC=8B=9C=EA=B0=84=20-=201?= =?UTF-8?q?=EA=B0=9C=EC=9B=94=20->=201=EB=B6=84=20=EC=9C=BC=EB=A1=9C=20?= =?UTF-8?q?=ED=91=9C=EC=8B=9C=EB=90=98=EB=8A=94=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../profile/creatorCommunity/CreatorCommunityService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/CreatorCommunityService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/CreatorCommunityService.kt index 07c1ad1..6adb097 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/CreatorCommunityService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/CreatorCommunityService.kt @@ -272,7 +272,7 @@ class CreatorCommunityService( duration.toMinutes() < 60 -> "${duration.toMinutes()}분전" duration.toHours() < 24 -> "${duration.toHours()}시간전" duration.toDays() < 30 -> "${duration.toDays()}일전" - duration.toDays() < 365 -> "${duration.toDays() / 30}개월" + duration.toDays() < 365 -> "${duration.toDays() / 30}개월전" else -> "${duration.toDays() / 365}년전" } } -- 2.40.1