aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-27 15:29:58 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-27 15:29:58 -0400
commit3b2b9c59b2fbfa7117139d29ba0ccb08a27e302a (patch)
tree2b8b2e412a4f16bbb5eb896f2cbf7373be61e33e /MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
parente8696f54d088a59f50ae52203f19067531176910 (diff)
extracted an item refresh service
Diffstat (limited to 'MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs')
-rw-r--r--MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
index d10f98766..f776cf675 100644
--- a/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
+++ b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
@@ -87,7 +87,7 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager
{
var handler = new WebRequestHandler
{
- CachePolicy = new RequestCachePolicy(RequestCacheLevel.BypassCache),
+ CachePolicy = new RequestCachePolicy(RequestCacheLevel.Revalidate),
AutomaticDecompression = enableHttpCompression ? DecompressionMethods.Deflate : DecompressionMethods.None
};