From 007be6b1ff4393fd1991a9f5fbd12e518f838ed2 Mon Sep 17 00:00:00 2001 From: Klaus Date: Fri, 26 Apr 2024 04:19:21 +0900 Subject: [PATCH] =?UTF-8?q?=EC=8B=9C=EB=A6=AC=EC=A6=88=20=EB=A6=AC?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8=20=EC=83=81=EC=84=B8=20API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sodalive/content/series/ContentSeriesService.kt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/series/ContentSeriesService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/series/ContentSeriesService.kt index 484a8bc..6f96342 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/series/ContentSeriesService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/series/ContentSeriesService.kt @@ -88,10 +88,6 @@ class ContentSeriesService( memberId = member.id!! ) - val publishedDaysOfWeek = publishedDaysOfWeekText( - repository.getPublishedDaysOfWeek(seriesId = seriesId) - ) - val keywordList = repository.getKeywordList(seriesId = seriesId) .filter { it.isNotBlank() } @@ -128,7 +124,7 @@ class ContentSeriesService( minPrice = minPrice, maxPrice = maxPrice, keywordList = keywordList, - publishedDaysOfWeek = publishedDaysOfWeek + publishedDaysOfWeek = publishedDaysOfWeekText(series.publishedDaysOfWeek) ) }