aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-19 20:53:18 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-19 20:53:18 -0400
commitb7a8b92c0011c5411a691d522a414480c4c5e34c (patch)
tree3a84dbd4d5cd1c78561a92c2a9283ac9cf687b52 /MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
parent04468452ea873e83811522180a0423ac72d6f77d (diff)
reduce system info refreshing from dashboard
Diffstat (limited to 'MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs')
-rw-r--r--MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
index cd26d601d..550fe9593 100644
--- a/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
+++ b/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs
@@ -470,7 +470,7 @@ namespace MediaBrowser.Common.Implementations.HttpClientManager
{
var message = new HttpRequestMessage(HttpMethod.Get, options.Url);
- foreach (var pair in options.RequestHeaders.ToArray())
+ foreach (var pair in options.RequestHeaders.ToList())
{
message.Headers.Add(pair.Key, pair.Value);
}