From e24d7676fed0a891ec3280e3f7103a0712cc60b2 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 2 Oct 2013 10:08:30 -0400 Subject: [PATCH] add more data to item counts --- MediaBrowser.Api/LibraryService.cs | 6 +++++- MediaBrowser.Model/Dto/ItemCounts.cs | 26 ++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/MediaBrowser.Api/LibraryService.cs b/MediaBrowser.Api/LibraryService.cs index c885a3981f..0f15124a5f 100644 --- a/MediaBrowser.Api/LibraryService.cs +++ b/MediaBrowser.Api/LibraryService.cs @@ -320,13 +320,17 @@ namespace MediaBrowser.Api AlbumCount = items.OfType().Count(), EpisodeCount = items.OfType().Count(), GameCount = items.OfType().Count(), + GameSystemCount = items.OfType().Count(), MovieCount = items.OfType().Count(), SeriesCount = items.OfType().Count(), SongCount = items.OfType