fix: accurate time for streamed sessions

This commit is contained in:
benonymity 2022-12-07 14:39:26 -05:00
parent 96dde8cf31
commit d3c6429fd6

View file

@ -151,6 +151,14 @@ class PlayerProgress {
} else {
let playbackReport = PlaybackReport(currentTime: session.currentTime, duration: session.duration, timeListened: session.timeListening)
success = await ApiClient.reportPlaybackProgress(report: playbackReport, sessionId: session.id)
// Reset time listening becuase server expects that time to be since last sync, not for the whole session
if success {
if let session = session.thaw() {
try session.update {
session.timeListening = 0
}
}
}
}