aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/LibraryService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Api/LibraryService.cs')
-rw-r--r--MediaBrowser.Api/LibraryService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Api/LibraryService.cs b/MediaBrowser.Api/LibraryService.cs
index 91ca8a534..f319b3106 100644
--- a/MediaBrowser.Api/LibraryService.cs
+++ b/MediaBrowser.Api/LibraryService.cs
@@ -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);