SenorSmartyPants 2025-05-23 14:36:21 -04:00 committed by GitHub
commit cea7e7f21a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,8 @@ export default {
return `${this.movieCount} movies`; return `${this.movieCount} movies`;
else if (this.item.libraryType === "series") else if (this.item.libraryType === "series")
return `${this.episodeCount} eps, ${this.seriesCount} series`; return `${this.episodeCount} eps, ${this.seriesCount} series`;
else if (this.item.libraryType === "moviesandseries")
return `${this.movieCount} movies, ${this.seriesCount} series`;
else return `wrong library type 💀`; else return `wrong library type 💀`;
}, },
}, },