From a4b40ad9d90a40cd5e35bb7b9c43ad436e992cd4 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 13 Feb 2014 23:00:13 -0500 Subject: handle year in name when searching --- .../HttpClientManager/HttpClientManager.cs | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (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 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 }; } } -- cgit v1.2.3