diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-23 11:02:53 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-23 11:02:53 -0400 |
| commit | 189618a75159d604e425c9318984dc2d8a9cc3f9 (patch) | |
| tree | a87beed88f3f90679b6178641a8469f4129986d7 /MediaBrowser.Api/UserLibrary | |
| parent | 0acc25735419b051c6f57a2c08b2ad6f3a969b83 (diff) | |
fixes #358 - Weather validation in Server configuration
Diffstat (limited to 'MediaBrowser.Api/UserLibrary')
| -rw-r--r-- | MediaBrowser.Api/UserLibrary/GenresService.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Api/UserLibrary/PersonsService.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Api/UserLibrary/StudiosService.cs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Api/UserLibrary/GenresService.cs b/MediaBrowser.Api/UserLibrary/GenresService.cs index 7c49501ab..4c383f0d7 100644 --- a/MediaBrowser.Api/UserLibrary/GenresService.cs +++ b/MediaBrowser.Api/UserLibrary/GenresService.cs @@ -169,7 +169,7 @@ namespace MediaBrowser.Api.UserLibrary SeriesCount = items.OfType<Series>().Count(), - GameCount = items.OfType<BaseGame>().Count() + GameCount = items.OfType<Game>().Count() }; return ToOptimizedResult(counts); diff --git a/MediaBrowser.Api/UserLibrary/PersonsService.cs b/MediaBrowser.Api/UserLibrary/PersonsService.cs index 06aa3111d..2d555e001 100644 --- a/MediaBrowser.Api/UserLibrary/PersonsService.cs +++ b/MediaBrowser.Api/UserLibrary/PersonsService.cs @@ -160,7 +160,7 @@ namespace MediaBrowser.Api.UserLibrary SeriesCount = items.OfType<Series>().Count(), - GameCount = items.OfType<BaseGame>().Count(), + GameCount = items.OfType<Game>().Count(), SongCount = items.OfType<Audio>().Count(), diff --git a/MediaBrowser.Api/UserLibrary/StudiosService.cs b/MediaBrowser.Api/UserLibrary/StudiosService.cs index 687e237bd..26a13a4b8 100644 --- a/MediaBrowser.Api/UserLibrary/StudiosService.cs +++ b/MediaBrowser.Api/UserLibrary/StudiosService.cs @@ -132,7 +132,7 @@ namespace MediaBrowser.Api.UserLibrary SeriesCount = items.OfType<Series>().Count(), - GameCount = items.OfType<BaseGame>().Count(), + GameCount = items.OfType<Game>().Count(), SongCount = items.OfType<Audio>().Count(), |
