시리즈 상세
- 커버이미지 뒤에 !!가 잘못들어가던 버그 수정
This commit is contained in:
@@ -4,7 +4,7 @@ data class GetCreatorAdminContentSeriesDetailResponse(
|
|||||||
val seriesId: Long,
|
val seriesId: Long,
|
||||||
val title: String,
|
val title: String,
|
||||||
val introduction: String,
|
val introduction: String,
|
||||||
val coverImage: String,
|
val coverImageUrl: String,
|
||||||
val publishedDaysOfWeek: String,
|
val publishedDaysOfWeek: String,
|
||||||
val genre: String,
|
val genre: String,
|
||||||
val keywords: String,
|
val keywords: String,
|
||||||
|
@@ -62,7 +62,7 @@ data class Series(
|
|||||||
seriesId = id!!,
|
seriesId = id!!,
|
||||||
title = title,
|
title = title,
|
||||||
introduction = introduction,
|
introduction = introduction,
|
||||||
coverImage = "$imageHost/$coverImage!!",
|
coverImageUrl = "$imageHost/${coverImage!!}",
|
||||||
publishedDaysOfWeek = publishedDaysOfWeekText(),
|
publishedDaysOfWeek = publishedDaysOfWeekText(),
|
||||||
genre = genre!!.genre,
|
genre = genre!!.genre,
|
||||||
keywords = keywordList.map { it.keyword!!.tag }.joinToString(" ") { it },
|
keywords = keywordList.map { it.keyword!!.tag }.joinToString(" ") { it },
|
||||||
|
Reference in New Issue
Block a user