Remove old missing parts references

This commit is contained in:
advplyr 2024-04-28 16:38:40 -05:00
parent aae53a54cd
commit fc954a968b
2 changed files with 2 additions and 13 deletions

View file

@ -215,7 +215,7 @@ export default {
return !!this.userProgress?.isFinished
},
showError() {
return this.numMissingParts || this.isMissing || this.isInvalid
return this.isMissing || this.isInvalid
},
isStreaming() {
return this.store.getters['getlibraryItemIdStreaming'] === this.libraryItemId
@ -235,10 +235,6 @@ export default {
isInvalid() {
return this._libraryItem.isInvalid
},
numMissingParts() {
if (this.isPodcast) return 0
return this.media.numMissingParts
},
store() {
return this.$store || this.$nuxt.$store
},