mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
display songs on ibn page
This commit is contained in:
parent
841aab04c7
commit
08240b86e5
@ -79,7 +79,7 @@ namespace MediaBrowser.Api.UserLibrary
|
|||||||
|
|
||||||
GameCount = items.OfType<BaseGame>().Count(),
|
GameCount = items.OfType<BaseGame>().Count(),
|
||||||
|
|
||||||
SongCount = items.OfType<AudioCodecs>().Count(),
|
SongCount = items.OfType<Audio>().Count(),
|
||||||
|
|
||||||
AlbumCount = items.OfType<MusicAlbum>().Count()
|
AlbumCount = items.OfType<MusicAlbum>().Count()
|
||||||
};
|
};
|
||||||
|
@ -102,7 +102,7 @@ namespace MediaBrowser.Api.UserLibrary
|
|||||||
|
|
||||||
GameCount = items.OfType<BaseGame>().Count(),
|
GameCount = items.OfType<BaseGame>().Count(),
|
||||||
|
|
||||||
SongCount = items.OfType<AudioCodecs>().Count(),
|
SongCount = items.OfType<Audio>().Count(),
|
||||||
|
|
||||||
AlbumCount = items.OfType<MusicAlbum>().Count(),
|
AlbumCount = items.OfType<MusicAlbum>().Count(),
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ namespace MediaBrowser.Api.UserLibrary
|
|||||||
|
|
||||||
GameCount = items.OfType<BaseGame>().Count(),
|
GameCount = items.OfType<BaseGame>().Count(),
|
||||||
|
|
||||||
SongCount = items.OfType<AudioCodecs>().Count(),
|
SongCount = items.OfType<Audio>().Count(),
|
||||||
|
|
||||||
AlbumCount = items.OfType<MusicAlbum>().Count()
|
AlbumCount = items.OfType<MusicAlbum>().Count()
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user