Add Podcast match tab and find covers

This commit is contained in:
advplyr
2022-04-13 18:13:39 -05:00
parent 4edba20e9e
commit 3f6ed6dbf9
10 changed files with 113 additions and 20 deletions

View File

@@ -144,6 +144,8 @@ class LibraryItem {
}
}
get isPodcast() { return this.mediaType === 'podcast' }
get isBook() { return this.mediaType === 'book' }
get size() {
var total = 0
this.libraryFiles.forEach((lf) => total += lf.metadata.size)