콘텐츠 상세

- 이전화/다음화 추가
This commit is contained in:
2025-04-01 16:21:32 +09:00
parent ae439b7e64
commit 198ecddc89
3 changed files with 46 additions and 2 deletions

View File

@@ -473,6 +473,9 @@ class AudioContentService(
null
}
val previousContent = repository.findPreviousContent(title = audioContent.title)
val nextContent = repository.findNextContent(title = audioContent.title)
if (
!isExistsAudioContent &&
!audioContent.isActive &&
@@ -666,7 +669,9 @@ class AudioContentService(
isFollowing = creatorFollowing?.isFollow ?: false,
isFollow = creatorFollowing?.isFollow ?: false,
isNotify = creatorFollowing?.isNotify ?: false
)
),
previousContent = previousContent,
nextContent = nextContent
)
}