diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-27 11:25:04 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-27 11:25:04 -0500 |
| commit | f0f897e97e45a489f1c02e1d81dc838a4ab5bd13 (patch) | |
| tree | 159dafeff5ffcefb0ce7560797275b1722bfd914 /MediaBrowser.Providers/All/LocalImageProvider.cs | |
| parent | 74625cc580076fe8f67f2ff40f99ecf7a33f13e6 (diff) | |
updated nuget
Diffstat (limited to 'MediaBrowser.Providers/All/LocalImageProvider.cs')
| -rw-r--r-- | MediaBrowser.Providers/All/LocalImageProvider.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Providers/All/LocalImageProvider.cs b/MediaBrowser.Providers/All/LocalImageProvider.cs index dbdaa87a13..f626c95343 100644 --- a/MediaBrowser.Providers/All/LocalImageProvider.cs +++ b/MediaBrowser.Providers/All/LocalImageProvider.cs @@ -2,7 +2,6 @@ using MediaBrowser.Controller.Entities.Audio; using MediaBrowser.Controller.Entities.Movies; using MediaBrowser.Controller.Entities.TV; -using MediaBrowser.Controller.LiveTv; using MediaBrowser.Controller.Providers; using MediaBrowser.Model.Entities; using System; @@ -188,7 +187,7 @@ namespace MediaBrowser.Providers.All { PopulateBackdrops(images, files, imagePrefix, "backdrop", "backdrop", ImageType.Backdrop); - if (string.IsNullOrEmpty(item.Path)) + if (!string.IsNullOrEmpty(item.Path)) { var name = Path.GetFileNameWithoutExtension(item.Path); |
