aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-26 16:31:47 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-26 16:31:47 -0500
commitec131ba0dc25b29ca522cf4555bfad29ad501406 (patch)
treed7b0d0a179c64762354d032df58b8f46546a1ac7 /MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
parent96d3c35ba0e181c41728fd7bbdb3d56903aca90d (diff)
added first play to classes
Diffstat (limited to 'MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs')
-rw-r--r--MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
index 8e5cab43c..3dcf044f7 100644
--- a/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
+++ b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
@@ -1,4 +1,5 @@
-using MediaBrowser.Common.Configuration;
+using System.Collections.Specialized;
+using MediaBrowser.Common.Configuration;
using MediaBrowser.Common.IO;
using MediaBrowser.Common.Net;
using MediaBrowser.Model.Logging;
@@ -367,7 +368,7 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager
ContentType = httpResponse.ContentType,
- Headers = httpResponse.Headers,
+ Headers = new NameValueCollection(httpResponse.Headers),
ContentLength = contentLength
};