시리즈 상세

- 커버이미지 뒤에 !!가 잘못들어가던 버그 수정
This commit is contained in:
Klaus 2024-04-23 18:30:17 +09:00
parent 3f86862ae9
commit 05c293ed6d
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ data class GetCreatorAdminContentSeriesDetailResponse(
val seriesId: Long,
val title: String,
val introduction: String,
val coverImage: String,
val coverImageUrl: String,
val publishedDaysOfWeek: String,
val genre: String,
val keywords: String,

View File

@ -62,7 +62,7 @@ data class Series(
seriesId = id!!,
title = title,
introduction = introduction,
coverImage = "$imageHost/$coverImage!!",
coverImageUrl = "$imageHost/${coverImage!!}",
publishedDaysOfWeek = publishedDaysOfWeekText(),
genre = genre!!.genre,
keywords = keywordList.map { it.keyword!!.tag }.joinToString(" ") { it },