diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/CreatorCommunityService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/CreatorCommunityService.kt index 11e3c72..7e483f9 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/CreatorCommunityService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/CreatorCommunityService.kt @@ -214,7 +214,14 @@ class CreatorCommunityService( val existOrdered = useCanRepository.isExistOrdered(postId = it.id, memberId = memberId) - val audioUrl = if ((it.price <= 0 || existOrdered) && it.audioPath != null) { + val audioUrl = if ( + ( + it.price <= 0 || + existOrdered || + it.creatorId == memberId + ) && + it.audioPath != null + ) { audioContentCloudFront.generateSignedURL( resourcePath = it.audioPath, expirationTime = 1000 * 60 * 30