fix: 콘텐츠 PlayCount 기록 기준을 10초에서 3초로 수정

This commit is contained in:
Yu Sung 2025-04-29 13:56:41 +09:00
parent 212224ebd7
commit 9e16b687e4
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ final class HomeViewModel: ObservableObject {
.filter {
return $0.endPosition != nil
}
.filter { ($0.endPosition! - $0.startPosition) >= 10 }
.filter { ($0.endPosition! - $0.startPosition) >= 3 }
.map {
PlaybackTrackingData(contentId: $0.audioContentId, playDateTime: $0.playDateTime, isPreview: $0.isPreview)
}