add additional info to timer infos

This commit is contained in:
Luke Pulverenti
2017-10-18 21:19:48 -04:00
parent bca5f49ac9
commit 12adc7ae4c
7 changed files with 62 additions and 66 deletions

View File

@@ -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;