diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-23 10:02:56 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-23 10:02:56 -0400 |
| commit | b54240f6798d463d30b1465e376cea748f2d8655 (patch) | |
| tree | 075443bacda8e85da4bef805888564b5c12133c6 /MediaBrowser.Server.Implementations/Providers/ProviderManager.cs | |
| parent | 831c412ecf8ad5e259f1293ed4655b3a1b2997db (diff) | |
fixes #553 - Support locking OfficialRating field
Diffstat (limited to 'MediaBrowser.Server.Implementations/Providers/ProviderManager.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Providers/ProviderManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Providers/ProviderManager.cs b/MediaBrowser.Server.Implementations/Providers/ProviderManager.cs index 927631144..7d5a581d5 100644 --- a/MediaBrowser.Server.Implementations/Providers/ProviderManager.cs +++ b/MediaBrowser.Server.Implementations/Providers/ProviderManager.cs @@ -128,7 +128,7 @@ namespace MediaBrowser.Server.Implementations.Providers // Put this check below the await because the needs refresh of the next tier of providers may depend on the previous ones running // This is the case for the fan art provider which depends on the movie and tv providers having run before them - if (provider.RequiresInternet && item.DontFetchMeta) + if (provider.RequiresInternet && item.DontFetchMeta && provider.EnforceDontFetchMetadata) { continue; } |
