aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-01 20:28:16 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-01 20:28:16 -0400
commit0690b4f2e09608b9f25ebb8ef9a325b57135e529 (patch)
tree051661ff804a5a5f58402e534df96b5ea59c7a93 /MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
parent4aa959c1e266442804b6961aeb2d09f4b812f744 (diff)
Add user cinema mode setting
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 17e59502e..81fcd6228 100644
--- a/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
+++ b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
@@ -233,7 +233,7 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager
{
HttpResponseInfo response;
- if (!options.EnableUnconditionalCache)
+ if (options.CacheMode == CacheMode.None)
{
response = await SendAsyncInternal(options, httpMethod).ConfigureAwait(false);
return response;