Compare commits
2 Commits
8e7e77067a
...
67097696e6
Author | SHA1 | Date |
---|---|---|
|
67097696e6 | |
|
d32f503633 |
|
@ -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}년전"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue