mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:43:07 +03:00
added boxsets to item counts
This commit is contained in:
@@ -302,7 +302,8 @@ namespace MediaBrowser.Api
|
||||
SongCount = items.OfType<Audio>().Count(),
|
||||
TrailerCount = items.OfType<Trailer>().Count(),
|
||||
MusicVideoCount = items.OfType<MusicVideo>().Count(),
|
||||
AdultVideoCount = items.OfType<AdultVideo>().Count()
|
||||
AdultVideoCount = items.OfType<AdultVideo>().Count(),
|
||||
BoxSetCount = items.OfType<BoxSet>().Count()
|
||||
};
|
||||
|
||||
return ToOptimizedResult(counts);
|
||||
|
||||
Reference in New Issue
Block a user