aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-02-09 19:15:07 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-02-09 19:15:07 -0500
commit9a59d1224190abd618abba4c87d3a7b5a04c6eb0 (patch)
tree15fe1de686b327045c901adfa4829bb2ec2dc840
parent35415d6a504ae8e2f066b2e0e4b1a94745c95bf3 (diff)
update channel image urls
-rw-r--r--Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs b/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs
index cd5fd0c8c..bbb060203 100644
--- a/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs
+++ b/Emby.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs
@@ -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;
+ }
}
}
}