aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/TV/TvdbEpisodeImageProvider.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Providers/TV/TvdbEpisodeImageProvider.cs')
-rw-r--r--MediaBrowser.Providers/TV/TvdbEpisodeImageProvider.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/MediaBrowser.Providers/TV/TvdbEpisodeImageProvider.cs b/MediaBrowser.Providers/TV/TvdbEpisodeImageProvider.cs
index 754f973bc8..7d8f9e1864 100644
--- a/MediaBrowser.Providers/TV/TvdbEpisodeImageProvider.cs
+++ b/MediaBrowser.Providers/TV/TvdbEpisodeImageProvider.cs
@@ -194,9 +194,13 @@ namespace MediaBrowser.Providers.TV
public bool HasChanged(IHasMetadata item, DateTime date)
{
- if (!_config.Configuration.EnableTvDbUpdates && item.LocationType != LocationType.Virtual)
+ if (item.LocationType != LocationType.Virtual)
{
- return false;
+ // For non-virtual items, only enable if configured
+ if (!_config.Configuration.EnableTvDbUpdates)
+ {
+ return false;
+ }
}
if (!item.HasImage(ImageType.Primary))