mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-22 02:18:54 +01:00
Fix updating media progress object id
This commit is contained in:
@@ -121,7 +121,7 @@ export default {
|
||||
selectedIsFinished() {
|
||||
// Find an item that is not finished, if none then all items finished
|
||||
return !this.selectedLibraryItems.find((libraryItemId) => {
|
||||
var itemProgress = this.userMediaProgress.find((lip) => lip.id === libraryItemId)
|
||||
var itemProgress = this.userMediaProgress.find((lip) => lip.libraryItemId === libraryItemId)
|
||||
return !itemProgress || !itemProgress.isFinished
|
||||
})
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user