mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-22 00:07:52 +01:00
Fix remove media progress use libraryItemId
This commit is contained in:
parent
174dac8fd4
commit
8df05896b5
@ -270,7 +270,7 @@ class User {
|
|||||||
}
|
}
|
||||||
|
|
||||||
removeMediaProgress(libraryItemId) {
|
removeMediaProgress(libraryItemId) {
|
||||||
if (!this.mediaProgress.some(lip => lip.id == libraryItemId)) return false
|
if (!this.mediaProgress.some(lip => lip.libraryItemId == libraryItemId)) return false
|
||||||
this.mediaProgress = this.mediaProgress.filter(lip => lip.libraryItemId != libraryItemId)
|
this.mediaProgress = this.mediaProgress.filter(lip => lip.libraryItemId != libraryItemId)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user