fix: 콘텐츠 PlayCount 기록 기준을 10초에서 3초로 수정
This commit is contained in:
parent
212224ebd7
commit
9e16b687e4
|
@ -137,7 +137,7 @@ final class HomeViewModel: ObservableObject {
|
||||||
.filter {
|
.filter {
|
||||||
return $0.endPosition != nil
|
return $0.endPosition != nil
|
||||||
}
|
}
|
||||||
.filter { ($0.endPosition! - $0.startPosition) >= 10 }
|
.filter { ($0.endPosition! - $0.startPosition) >= 3 }
|
||||||
.map {
|
.map {
|
||||||
PlaybackTrackingData(contentId: $0.audioContentId, playDateTime: $0.playDateTime, isPreview: $0.isPreview)
|
PlaybackTrackingData(contentId: $0.audioContentId, playDateTime: $0.playDateTime, isPreview: $0.isPreview)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue