Merge pull request #2455 from MediaBrowser/dev

Dev
This commit is contained in:
Luke 2017-02-09 19:16:09 -05:00 committed by GitHub
commit 77f5b522a9
2 changed files with 6 additions and 1 deletions

View File

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

View File

@ -1,3 +1,3 @@
using System.Reflection; using System.Reflection;
[assembly: AssemblyVersion("3.2.0.104")] [assembly: AssemblyVersion("3.2.1.100")]