From 12adc7ae4cd823bac46e0d7b76ddc06d9b60bc14 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 18 Oct 2017 21:19:48 -0400 Subject: add additional info to timer infos --- Emby.Server.Implementations/LiveTv/LiveTvDtoService.cs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Emby.Server.Implementations/LiveTv') diff --git a/Emby.Server.Implementations/LiveTv/LiveTvDtoService.cs b/Emby.Server.Implementations/LiveTv/LiveTvDtoService.cs index e6479feaa8..15bbca136a 100644 --- a/Emby.Server.Implementations/LiveTv/LiveTvDtoService.cs +++ b/Emby.Server.Implementations/LiveTv/LiveTvDtoService.cs @@ -89,6 +89,11 @@ namespace Emby.Server.Implementations.LiveTv if (channel != null) { dto.ChannelName = channel.Name; + + if (channel.HasImage(ImageType.Primary)) + { + dto.ChannelPrimaryImageTag = GetImageTag(channel); + } } return dto; -- cgit v1.2.3