mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-22 03:44:28 +02:00
Fix MediaProgress not using the lastUpdate time sent for local progress syncs
This commit is contained in:
parent
d01a7cb756
commit
6d1f0b27df
1 changed files with 2 additions and 1 deletions
|
@ -246,9 +246,10 @@ class MediaProgress extends Model {
|
|||
// For local sync
|
||||
if (progressPayload.lastUpdate) {
|
||||
this.updatedAt = progressPayload.lastUpdate
|
||||
this.changed('updatedAt', true)
|
||||
}
|
||||
|
||||
return this.save()
|
||||
return this.save({ silent: !!progressPayload.lastUpdate })
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue