aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/HttpClientManager
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-13 23:00:13 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-13 23:00:13 -0500
commita4b40ad9d90a40cd5e35bb7b9c43ad436e992cd4 (patch)
tree84a697bf606b293c3e74d7757b28d3bb40d1d269 /MediaBrowser.Common.Implementations/HttpClientManager
parent58a46171ababb816636a65aa7f76c00de50f598f (diff)
handle year in name when searching
Diffstat (limited to 'MediaBrowser.Common.Implementations/HttpClientManager')
-rw-r--r--MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs12
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
};
}
}