mirror of https://github.com/bastienwirtz/homer
Emby/Jellyfin: Add moviesandseries option
Will display counts of movies and seriespull/778/head
parent
dd820b599f
commit
e315a5476e
|
@ -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 💀`;
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue