mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-12 18:50:23 +01:00
improve genre displays
This commit is contained in:
@@ -3975,7 +3975,8 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||
AlbumArtistStartsWithOrGreater = query.AlbumArtistStartsWithOrGreater,
|
||||
Tags = query.Tags,
|
||||
OfficialRatings = query.OfficialRatings,
|
||||
Genres = query.GenreIds,
|
||||
GenreIds = query.GenreIds,
|
||||
Genres = query.Genres,
|
||||
Years = query.Years
|
||||
};
|
||||
|
||||
@@ -4128,6 +4129,10 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||
{
|
||||
counts.AlbumCount = value;
|
||||
}
|
||||
else if (string.Equals(typeName, typeof(MusicArtist).FullName, StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
counts.ArtistCount = value;
|
||||
}
|
||||
else if (string.Equals(typeName, typeof(Audio).FullName, StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
counts.SongCount = value;
|
||||
|
||||
Reference in New Issue
Block a user