Browse Source

load music video artists for channel guide template (#1600)

pull/1601/head
Jason Dove 1 year ago committed by GitHub
parent
commit
49050a57d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      ErsatzTV.Application/Channels/Commands/RefreshChannelDataHandler.cs

4
ErsatzTV.Application/Channels/Commands/RefreshChannelDataHandler.cs

@ -125,6 +125,10 @@ public class RefreshChannelDataHandler : IRequestHandler<RefreshChannelData> @@ -125,6 +125,10 @@ public class RefreshChannelDataHandler : IRequestHandler<RefreshChannelData>
.ThenInclude(mvm => mvm.Directors)
.Include(p => p.Items)
.ThenInclude(i => i.MediaItem)
.ThenInclude(i => (i as MusicVideo).MusicVideoMetadata)
.ThenInclude(mvm => mvm.Artists)
.Include(p => p.Items)
.ThenInclude(i => i.MediaItem)
.ThenInclude(i => (i as MusicVideo).Artist)
.ThenInclude(a => a.ArtistMetadata)
.ThenInclude(am => am.Genres)

Loading…
Cancel
Save