Update cover url, audiobook player speed

This commit is contained in:
advplyr 2021-08-17 17:43:29 -05:00
parent 8fbdc1523d
commit dee7bcb2c2
6 changed files with 58 additions and 19 deletions

View file

@ -111,6 +111,10 @@ class StreamManager {
return
}
client.stream.updateClientCurrentTime(currentTime)
if (!client.user) {
Logger.error('No User for client', client)
return
}
client.user.updateAudiobookProgress(client.stream)
this.db.updateEntity('user', client.user.toJSON())
}