Browse Source

fix channel logos in xmltv

pull/80/head
Jason Dove 5 years ago
parent
commit
8439d6fd54
  1. 1
      ErsatzTV.Infrastructure/Data/Repositories/ChannelRepository.cs

1
ErsatzTV.Infrastructure/Data/Repositories/ChannelRepository.cs

@ -45,6 +45,7 @@ namespace ErsatzTV.Infrastructure.Data.Repositories @@ -45,6 +45,7 @@ namespace ErsatzTV.Infrastructure.Data.Repositories
public Task<List<Channel>> GetAllForGuide() =>
_dbContext.Channels
.Include(c => c.Artwork)
.Include(c => c.Playouts)
.ThenInclude(p => p.Items)
.ThenInclude(i => i.MediaItem)

Loading…
Cancel
Save