aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Providers/ProviderManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-19 17:20:47 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-19 17:20:47 -0400
commitb2b85d20a53216b48115ccbb9e3ff3d9b2d80f91 (patch)
tree8cdc30d3292bddacce21ea533cded54fb4d72ee6 /MediaBrowser.Server.Implementations/Providers/ProviderManager.cs
parent40a2af83c9e1b90cc6aa503ed5b77642e6d12a3b (diff)
slightly reduce simultaneous requests
Diffstat (limited to 'MediaBrowser.Server.Implementations/Providers/ProviderManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Providers/ProviderManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/Providers/ProviderManager.cs b/MediaBrowser.Server.Implementations/Providers/ProviderManager.cs
index 5f1b4bd58..2b85268cc 100644
--- a/MediaBrowser.Server.Implementations/Providers/ProviderManager.cs
+++ b/MediaBrowser.Server.Implementations/Providers/ProviderManager.cs
@@ -186,12 +186,12 @@ 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 (!force && !provider.NeedsRefresh(item))
+ if (provider.RequiresInternet && item.DontFetchMeta)
{
continue;
}
- if (provider.RequiresInternet && item.DontFetchMeta)
+ if (!force && !provider.NeedsRefresh(item))
{
continue;
}