시리즈 상세

- 연재 요일을 표시할 때 일~토 모두가 포함되어 있을 때 '매일'로 표시
This commit is contained in:
Klaus 2024-10-02 18:08:23 +09:00
parent f1611efe7c
commit d70a70b19c
1 changed files with 3 additions and 1 deletions

View File

@ -224,8 +224,10 @@ class ContentSeriesService(
return if (publishedDaysOfWeek.contains(SeriesPublishedDaysOfWeek.RANDOM)) {
dayOfWeekText
} else {
} else if (publishedDaysOfWeek.size < 7) {
"매주 $dayOfWeekText"
} else {
"매일"
}
}
}