parent
27deff3ff3
commit
b1f82f9abe
|
@ -28,7 +28,7 @@ class AudioContentMainTabHomeService(
|
|||
.minusWeeks(1)
|
||||
.with(TemporalAdjusters.previousOrSame(DayOfWeek.MONDAY))
|
||||
val endDate = startDate
|
||||
.plusDays(7)
|
||||
.plusDays(6)
|
||||
|
||||
val startDateFormatter = DateTimeFormatter.ofPattern("yyyy년 MM월 dd일")
|
||||
val endDateFormatter = DateTimeFormatter.ofPattern("MM월 dd일")
|
||||
|
@ -57,7 +57,7 @@ class AudioContentMainTabHomeService(
|
|||
memberId = member.id!!,
|
||||
isAdult = member.auth != null,
|
||||
startDate = startDate.minusDays(1),
|
||||
endDate = endDate.minusDays(1)
|
||||
endDate = endDate
|
||||
)
|
||||
|
||||
// 인기 콘텐츠
|
||||
|
@ -65,7 +65,7 @@ class AudioContentMainTabHomeService(
|
|||
memberId = member.id!!,
|
||||
isAdult = member.auth != null,
|
||||
startDate = startDate.minusDays(1),
|
||||
endDate = endDate.minusDays(1)
|
||||
endDate = endDate
|
||||
)
|
||||
|
||||
// 이벤트 배너
|
||||
|
@ -80,7 +80,7 @@ class AudioContentMainTabHomeService(
|
|||
val contentRankCreatorList = rankingService.fetchCreatorByContentRevenueRankTop20(
|
||||
memberId = member.id!!,
|
||||
startDate = startDate.minusDays(1),
|
||||
endDate = endDate.minusDays(1)
|
||||
endDate = endDate
|
||||
)
|
||||
|
||||
val salesRankContentList = if (contentRankCreatorList.isNotEmpty()) {
|
||||
|
|
Loading…
Reference in New Issue