mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 22:13:06 +03:00
added headroom scrolling
This commit is contained in:
@@ -1193,7 +1193,7 @@ namespace MediaBrowser.Server.Implementations.Dto
|
||||
{
|
||||
dto.Album = audio.Album;
|
||||
|
||||
var albumParent = audio.FindParent<MusicAlbum>();
|
||||
var albumParent = audio.AlbumEntity;
|
||||
|
||||
if (albumParent != null)
|
||||
{
|
||||
@@ -1208,15 +1208,6 @@ namespace MediaBrowser.Server.Implementations.Dto
|
||||
//}
|
||||
}
|
||||
|
||||
var album = item as MusicAlbum;
|
||||
|
||||
if (album != null)
|
||||
{
|
||||
dto.SoundtrackIds = album.SoundtrackIds
|
||||
.Select(i => i.ToString("N"))
|
||||
.ToArray();
|
||||
}
|
||||
|
||||
var hasArtist = item as IHasArtist;
|
||||
if (hasArtist != null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user