aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-10-18 21:19:48 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-10-18 21:19:48 -0400
commit12adc7ae4cd823bac46e0d7b76ddc06d9b60bc14 (patch)
tree3cd03b3dd935e5607400607dc0c631938e349cfc /Emby.Server.Implementations/LiveTv
parentbca5f49ac975c781e690e8ec52b726659480c82a (diff)
add additional info to timer infos
Diffstat (limited to 'Emby.Server.Implementations/LiveTv')
-rw-r--r--Emby.Server.Implementations/LiveTv/LiveTvDtoService.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/LiveTv/LiveTvDtoService.cs b/Emby.Server.Implementations/LiveTv/LiveTvDtoService.cs
index e6479feaa..15bbca136 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;