aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-27 18:25:04 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-27 18:25:04 -0400
commit70cecb346bca0c2956417997498b84c4866dc1c2 (patch)
treeb27cd960395aa16927e8f93a8689401953c7574f /MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
parente5936e008e78ccad0ad98ee4b81e82532b0f6759 (diff)
reduce fanart movie requests using their updates api
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs')
-rw-r--r--MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
index 893715b73..023df3177 100644
--- a/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
+++ b/MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs
@@ -358,7 +358,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
{
var address = endpoint.ToString();
- _localEndPoints.AddOrUpdate(address, address, (key, existing) => address);
+ _localEndPoints.GetOrAdd(address, address);
}
if (EnableHttpRequestLogging)