diff options
Diffstat (limited to 'MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs')
| -rw-r--r-- | MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs index a49a0a0db..c29924c35 100644 --- a/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs +++ b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs @@ -292,7 +292,9 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager StatusCode = httpResponse.StatusCode, - ContentType = httpResponse.ContentType + ContentType = httpResponse.ContentType, + + Headers = httpResponse.Headers }; } @@ -318,7 +320,9 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager StatusCode = httpResponse.StatusCode, - ContentType = httpResponse.ContentType + ContentType = httpResponse.ContentType, + + Headers = httpResponse.Headers }; } } @@ -495,7 +499,9 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager StatusCode = httpResponse.StatusCode, - ContentType = httpResponse.ContentType + ContentType = httpResponse.ContentType, + + Headers = httpResponse.Headers }; } } |
