mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-15 17:22:47 +02:00
New data model removing media entity for books
This commit is contained in:
@@ -76,11 +76,11 @@ export default {
|
||||
currentLibraryId() {
|
||||
return this.$store.state.libraries.currentLibraryId
|
||||
},
|
||||
userItemProgress() {
|
||||
return this.user.libraryItemProgress || []
|
||||
userMediaProgress() {
|
||||
return this.user.mediaProgress || []
|
||||
},
|
||||
userItemsFinished() {
|
||||
return this.userItemProgress.filter((lip) => !!lip.isFinished)
|
||||
return this.userMediaProgress.filter((lip) => !!lip.isFinished)
|
||||
},
|
||||
mostRecentListeningSessions() {
|
||||
if (!this.listeningStats) return []
|
||||
|
||||
Reference in New Issue
Block a user