diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-27 18:25:04 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-27 18:25:04 -0400 |
| commit | 70cecb346bca0c2956417997498b84c4866dc1c2 (patch) | |
| tree | b27cd960395aa16927e8f93a8689401953c7574f /MediaBrowser.Server.Implementations/HttpServer/HttpServer.cs | |
| parent | e5936e008e78ccad0ad98ee4b81e82532b0f6759 (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.cs | 2 |
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) |
