aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/LiveTvManager.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-06-11 16:41:27 -0400
committerGitHub <noreply@github.com>2017-06-11 16:41:27 -0400
commit24975638f9772fbec4005f97ff954e01ce22a41f (patch)
tree3b99c916799efa86005601b63076ae33f530c98a /Emby.Server.Implementations/LiveTv/LiveTvManager.cs
parent4fa170ab080b59ff3e5d8f913a42dfd7d21dbaa3 (diff)
parent27d9ace40442aa50c0d27c318a8719a00796e950 (diff)
Merge pull request #2700 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Server.Implementations/LiveTv/LiveTvManager.cs')
-rw-r--r--Emby.Server.Implementations/LiveTv/LiveTvManager.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/LiveTv/LiveTvManager.cs b/Emby.Server.Implementations/LiveTv/LiveTvManager.cs
index c2f0575604..44a9bd1f56 100644
--- a/Emby.Server.Implementations/LiveTv/LiveTvManager.cs
+++ b/Emby.Server.Implementations/LiveTv/LiveTvManager.cs
@@ -694,6 +694,20 @@ namespace Emby.Server.Implementations.LiveTv
}
}
+ if (!item.HasImage(ImageType.Thumb))
+ {
+ if (!string.IsNullOrWhiteSpace(info.ThumbImageUrl))
+ {
+ item.SetImage(new ItemImageInfo
+ {
+ Path = info.ImageUrl,
+ Type = ImageType.Thumb,
+ IsPlaceholder = true
+
+ }, 0);
+ }
+ }
+
var isUpdated = false;
if (isNew)
{