Emby/Jellyfin: Add moviesandseries option

Will display counts of movies and series
pull/778/head
SenorSmartyPants 2024-05-16 16:35:22 -05:00
parent dd820b599f
commit e315a5476e
1 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,8 @@ export default {
return `${this.movieCount} movies`;
else if (this.item.libraryType === "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 💀`;
},
},