diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-07 15:30:41 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-07 15:30:41 -0500 |
| commit | 76658f07977a5857c752dc1266b66f881b454f48 (patch) | |
| tree | 34a55486343c34fedc03099891a2e2eb8690dc02 /MediaBrowser.Server.Implementations/LiveTv | |
| parent | 5e2a2a02ef73517f11ef9c7a513ac53ed0f9b2e8 (diff) | |
create images list object
Diffstat (limited to 'MediaBrowser.Server.Implementations/LiveTv')
| -rw-r--r-- | MediaBrowser.Server.Implementations/LiveTv/LiveTvDtoService.cs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/MediaBrowser.Server.Implementations/LiveTv/LiveTvDtoService.cs b/MediaBrowser.Server.Implementations/LiveTv/LiveTvDtoService.cs index 4805adb1f0..22d683e1b6 100644 --- a/MediaBrowser.Server.Implementations/LiveTv/LiveTvDtoService.cs +++ b/MediaBrowser.Server.Implementations/LiveTv/LiveTvDtoService.cs @@ -401,16 +401,9 @@ namespace MediaBrowser.Server.Implementations.LiveTv private Guid? GetImageTag(IHasImages info) { - var path = info.PrimaryImagePath; - - if (string.IsNullOrEmpty(path)) - { - return null; - } - try { - return _imageProcessor.GetImageCacheTag(info, ImageType.Primary, path); + return _imageProcessor.GetImageCacheTag(info, ImageType.Primary); } catch (Exception ex) { |
