test #129

Merged
klaus merged 2 commits from test into main 2024-02-12 07:53:27 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 537cdbb307 - Show all commits

View File

@ -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}년전"
}
}