From 8439d6fd54f033409d7dba1cdf410f59dd1e0a6a Mon Sep 17 00:00:00 2001 From: Jason Dove Date: Sun, 14 Mar 2021 18:44:19 -0500 Subject: [PATCH] fix channel logos in xmltv --- ErsatzTV.Infrastructure/Data/Repositories/ChannelRepository.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ErsatzTV.Infrastructure/Data/Repositories/ChannelRepository.cs b/ErsatzTV.Infrastructure/Data/Repositories/ChannelRepository.cs index 575096e66..5ba814ab1 100644 --- a/ErsatzTV.Infrastructure/Data/Repositories/ChannelRepository.cs +++ b/ErsatzTV.Infrastructure/Data/Repositories/ChannelRepository.cs @@ -45,6 +45,7 @@ namespace ErsatzTV.Infrastructure.Data.Repositories public Task> GetAllForGuide() => _dbContext.Channels + .Include(c => c.Artwork) .Include(c => c.Playouts) .ThenInclude(p => p.Items) .ThenInclude(i => i.MediaItem)