From 331361fde66c63976f6422f48318275506b4a89a Mon Sep 17 00:00:00 2001 From: Klaus Date: Fri, 27 Feb 2026 11:43:02 +0900 Subject: [PATCH] =?UTF-8?q?fix(explorer):=20=ED=81=AC=EB=A6=AC=EC=97=90?= =?UTF-8?q?=EC=9D=B4=ED=84=B0=20=ED=94=84=EB=A1=9C=ED=95=84=20=EC=9D=91?= =?UTF-8?q?=EB=8B=B5=EC=97=90=EC=84=9C=20activitySummary=20=ED=95=84?= =?UTF-8?q?=EB=93=9C=EB=A5=BC=20=EC=A0=9C=EA=B1=B0=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sodalive/explorer/ExplorerService.kt | 18 ------------------ .../explorer/GetCreatorProfileResponse.kt | 1 - 2 files changed, 19 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 a8eac5e5..e8e4453a 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerService.kt @@ -405,23 +405,6 @@ class ExplorerService( listOf() } - // 차단한 크리에이터 인지 체크 - val activitySummary = if (isCreator) { - // 활동요약 (라이브 횟수, 라이브 시간, 라이브 참여자, 콘텐츠 수) - val liveCount = queryRepository.getLiveCount(creatorId) ?: 0 - val liveTime = queryRepository.getLiveTime(creatorId) - val liveContributorCount = queryRepository.getLiveContributorCount(creatorId) ?: 0 - val contentCount = queryRepository.getContentCount(creatorId) ?: 0 - GetCreatorActivitySummary( - liveCount = liveCount, - liveTime = liveTime, - liveContributorCount = liveContributorCount, - contentCount = contentCount - ) - } else { - GetCreatorActivitySummary(0, 0, 0, 0) - } - val seriesList = if (isCreator && !isBlock) { seriesService .getSeriesList( @@ -467,7 +450,6 @@ class ExplorerService( communityPostList = communityPostList, channelDonationList = channelDonationList, cheers = cheers, - activitySummary = activitySummary, seriesList = seriesList, isBlock = isBlock, isCreatorRole = isCreator diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCreatorProfileResponse.kt b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCreatorProfileResponse.kt index 50d7665c..645561f5 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCreatorProfileResponse.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/GetCreatorProfileResponse.kt @@ -18,7 +18,6 @@ data class GetCreatorProfileResponse( val communityPostList: List, val channelDonationList: List, val cheers: GetCheersResponse, - val activitySummary: GetCreatorActivitySummary, val seriesList: List, val isBlock: Boolean, val isCreatorRole: Boolean