From d398d4780a8101a38e2890936501516147ca639a Mon Sep 17 00:00:00 2001 From: Klaus Date: Wed, 25 Feb 2026 14:21:50 +0900 Subject: [PATCH] =?UTF-8?q?fix(profile):=20=EC=82=AC=EC=9A=A9=ED=95=98?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EB=8A=94=20websiteUrl,=20blogUrl=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kotlin/kr/co/vividnext/sodalive/explorer/ExplorerService.kt | 2 -- .../co/vividnext/sodalive/explorer/GetCreatorDetailResponse.kt | 2 -- 2 files changed, 4 deletions(-) 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 )