From 0690b4f2e09608b9f25ebb8ef9a325b57135e529 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 1 Oct 2014 20:28:16 -0400 Subject: Add user cinema mode setting --- .../HttpClientManager/HttpClientManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs') 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; -- cgit v1.2.3