update channel image urls

This commit is contained in:
Luke Pulverenti 2017-02-09 19:15:07 -05:00
parent 35415d6a50
commit 9a59d12241

View file

@ -423,6 +423,11 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
{
tunerChannel.Name = epgChannel.Name;
}
if (!string.IsNullOrWhiteSpace(epgChannel.ImageUrl))
{
tunerChannel.ImageUrl = epgChannel.ImageUrl;
tunerChannel.HasImage = true;
}
}
}
}