mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-14 09:18:22 +02:00
Fix remove media progress use libraryItemId
This commit is contained in:
@ -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
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user