display songs on ibn page

This commit is contained in:
Luke Pulverenti 2013-04-19 20:44:35 -04:00
parent 841aab04c7
commit 08240b86e5
3 changed files with 3 additions and 3 deletions

View file

@ -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()
};

View file

@ -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(),

View file

@ -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()
};