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 86a0191..6857adf 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 @@ -103,7 +103,7 @@ class ContentSeriesService( nickname = series.member!!.nickname, profileImage = "$coverImageHost/${series.member!!.profileImage}", isFollow = creatorFollowing?.isFollow ?: false, - isNotice = creatorFollowing?.isNotify ?: false + isNotify = creatorFollowing?.isNotify ?: false ), rentalMinPrice = rentalMinPrice, rentalMaxPrice = rentalMaxPrice, diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/series/GetSeriesDetailResponse.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/series/GetSeriesDetailResponse.kt index a827760..7b9daac 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/series/GetSeriesDetailResponse.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/series/GetSeriesDetailResponse.kt @@ -28,6 +28,6 @@ data class GetSeriesDetailResponse( val nickname: String, val profileImage: String, val isFollow: Boolean, - val isNotice: Boolean + val isNotify: Boolean ) }