diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-27 09:05:33 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-27 09:05:33 -0400 |
| commit | 0bfb755a3895d26144a69eb7f0ea02bba655a15f (patch) | |
| tree | bf8e606c5846e38c57aa320ac0e50a916b8ac19e /MediaBrowser.Controller/Dto | |
| parent | 3eaf25132c65bf287f2206e85a8a1eaa5670ac15 (diff) | |
search hints progress
Diffstat (limited to 'MediaBrowser.Controller/Dto')
| -rw-r--r-- | MediaBrowser.Controller/Dto/DtoBuilder.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Dto/DtoBuilder.cs b/MediaBrowser.Controller/Dto/DtoBuilder.cs index 76a5f85172..93f5ba8cc8 100644 --- a/MediaBrowser.Controller/Dto/DtoBuilder.cs +++ b/MediaBrowser.Controller/Dto/DtoBuilder.cs @@ -431,7 +431,7 @@ namespace MediaBrowser.Controller.Dto if (album != null) { - var songs = album.Children.OfType<Audio>().ToList(); + var songs = album.RecursiveChildren.OfType<Audio>().ToList(); dto.AlbumArtist = songs.Select(i => i.AlbumArtist).FirstOrDefault(i => !string.IsNullOrEmpty(i)); |
