fix(content): 오디오 스냅샷 empty marker를 지원한다

This commit is contained in:
2026-07-12 22:42:44 +09:00
parent 90b1ff22fb
commit 23df3da784
2 changed files with 60 additions and 1 deletions

View File

@@ -86,7 +86,13 @@ class RecommendationSnapshotPersistenceAdapter(
private fun supportsEmptySnapshotMarker(sectionType: RecommendedSectionType): Boolean {
return sectionType == RecommendedSectionType.AI_CHARACTER ||
sectionType == RecommendedSectionType.CHEER_CREATOR ||
sectionType == RecommendedSectionType.POPULAR_COMMUNITY
sectionType == RecommendedSectionType.POPULAR_COMMUNITY ||
sectionType == RecommendedSectionType.NEW_AND_HOT_AUDIO_SAFE ||
sectionType == RecommendedSectionType.NEW_AND_HOT_AUDIO_ALL ||
sectionType == RecommendedSectionType.MOST_COMMENTED_AUDIO_SAFE ||
sectionType == RecommendedSectionType.MOST_COMMENTED_AUDIO_ALL ||
sectionType == RecommendedSectionType.RECOMMENDED_AUDIO_SAFE ||
sectionType == RecommendedSectionType.RECOMMENDED_AUDIO_ALL
}
companion object {