diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-19 20:44:35 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-19 20:44:35 -0400 |
| commit | 08240b86e5a9e7cc20698c1d7c0d1a36d48f360a (patch) | |
| tree | e28bce9aa0c6902a2d4aeb2e197c586bf07fa3a3 | |
| parent | 841aab04c74ac88cd513e9775973aee195671e78 (diff) | |
display songs on ibn page
| -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 19c5ef86f..4f87b154e 100644 --- a/MediaBrowser.Api/UserLibrary/GenresService.cs +++ b/MediaBrowser.Api/UserLibrary/GenresService.cs @@ -79,7 +79,7 @@ namespace MediaBrowser.Api.UserLibrary GameCount = items.OfType<BaseGame>().Count(), - SongCount = items.OfType<AudioCodecs>().Count(), + SongCount = items.OfType<Audio>().Count(), AlbumCount = items.OfType<MusicAlbum>().Count() }; diff --git a/MediaBrowser.Api/UserLibrary/PersonsService.cs b/MediaBrowser.Api/UserLibrary/PersonsService.cs index 93443db68..fb623e953 100644 --- a/MediaBrowser.Api/UserLibrary/PersonsService.cs +++ b/MediaBrowser.Api/UserLibrary/PersonsService.cs @@ -102,7 +102,7 @@ namespace MediaBrowser.Api.UserLibrary GameCount = items.OfType<BaseGame>().Count(), - SongCount = items.OfType<AudioCodecs>().Count(), + SongCount = items.OfType<Audio>().Count(), AlbumCount = items.OfType<MusicAlbum>().Count(), diff --git a/MediaBrowser.Api/UserLibrary/StudiosService.cs b/MediaBrowser.Api/UserLibrary/StudiosService.cs index 4072311d7..94c604685 100644 --- a/MediaBrowser.Api/UserLibrary/StudiosService.cs +++ b/MediaBrowser.Api/UserLibrary/StudiosService.cs @@ -75,7 +75,7 @@ namespace MediaBrowser.Api.UserLibrary GameCount = items.OfType<BaseGame>().Count(), - SongCount = items.OfType<AudioCodecs>().Count(), + SongCount = items.OfType<Audio>().Count(), AlbumCount = items.OfType<MusicAlbum>().Count() }; |
