diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerService.kt index 9ee7cdcf..d6ab8ef8 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerService.kt @@ -247,8 +247,6 @@ class ExplorerService( instagramUrl = creatorAccount.instagramUrl, fancimmUrl = creatorAccount.fancimmUrl, xUrl = creatorAccount.xUrl, - youtubeUrl = creatorAccount.youtubeUrl, - websiteUrl = creatorAccount.websiteUrl, blogUrl = creatorAccount.blogUrl, kakaoOpenChatUrl = creatorAccount.websiteUrl ) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCreatorDetailResponse.kt b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCreatorDetailResponse.kt index 4e143590..f8dd05e1 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCreatorDetailResponse.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCreatorDetailResponse.kt @@ -11,8 +11,6 @@ data class GetCreatorDetailResponse( @JsonProperty("instagramUrl") val instagramUrl: String, @JsonProperty("fancimmUrl") val fancimmUrl: String, @JsonProperty("xUrl") val xUrl: String, - @JsonProperty("youtubeUrl") val youtubeUrl: String, - @JsonProperty("websiteUrl") val websiteUrl: String, @JsonProperty("blogUrl") val blogUrl: String, @JsonProperty("kakaoOpenChatUrl") val kakaoOpenChatUrl: String )