fix(creator-channel): 빈 연재 요일 문구를 보완한다

This commit is contained in:
2026-06-20 04:35:18 +09:00
parent c39f339a86
commit 6c4df431b9
2 changed files with 11 additions and 0 deletions

View File

@@ -35,6 +35,9 @@ class CreatorChannelSeriesQueryPolicy {
}
fun publishedDaysOfWeekText(days: Set<SeriesPublishedDaysOfWeek>, locale: String): String {
if (days.isEmpty()) {
return randomText(locale)
}
if (days.contains(SeriesPublishedDaysOfWeek.RANDOM)) {
return randomText(locale)
}