diff --git a/src/components/services/Emby.vue b/src/components/services/Emby.vue index 5aa5f0d..b324a3d 100644 --- a/src/components/services/Emby.vue +++ b/src/components/services/Emby.vue @@ -44,6 +44,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 💀`; }, },