Merge pull request #456 from benonymity/listeningStatsFix

Fix Listening Stats
This commit is contained in:
advplyr 2022-12-07 16:28:37 -06:00 committed by GitHub
commit 139a0b3412
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
}
}
}
}