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 4d3c6fb..5286adf 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/ExplorerService.kt @@ -320,8 +320,16 @@ class ExplorerService( userId = it.userId, profileImage = it.profileImage, nickname = it.nickname, - isFollow = creatorFollowing?.isFollow, - isNotify = creatorFollowing?.isNotify + isFollow = creatorFollowing?.isFollow ?: if (it.role == MemberRole.CREATOR) { + false + } else { + null + }, + isNotify = creatorFollowing?.isNotify ?: if (it.role == MemberRole.CREATOR) { + false + } else { + null + } ) }