diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-26 16:31:47 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-26 16:31:47 -0500 |
| commit | ec131ba0dc25b29ca522cf4555bfad29ad501406 (patch) | |
| tree | d7b0d0a179c64762354d032df58b8f46546a1ac7 /MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs | |
| parent | 96d3c35ba0e181c41728fd7bbdb3d56903aca90d (diff) | |
added first play to classes
Diffstat (limited to 'MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs')
| -rw-r--r-- | MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs | 5 |
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 }; |
