aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpClientManager/HttpClientManager.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2019-01-16 13:17:39 -0500
committerGitHub <noreply@github.com>2019-01-16 13:17:39 -0500
commit7aa975325af87fe425fe143aaed1df830133be8b (patch)
treede46c0e3bf027c1f8ae03bc6c190f741e31c4e67 /Emby.Server.Implementations/HttpClientManager/HttpClientManager.cs
parent933ef438894ed233fec46badf58dd4f26492e832 (diff)
parentd0980f0da57c14966e9e90b00f1880b1b82f4fc8 (diff)
Merge pull request #455 from Bond-009/cleanup
Cleanup some small things
Diffstat (limited to 'Emby.Server.Implementations/HttpClientManager/HttpClientManager.cs')
-rw-r--r--Emby.Server.Implementations/HttpClientManager/HttpClientManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/HttpClientManager/HttpClientManager.cs b/Emby.Server.Implementations/HttpClientManager/HttpClientManager.cs
index 6494f0c6f..2f5eed547 100644
--- a/Emby.Server.Implementations/HttpClientManager/HttpClientManager.cs
+++ b/Emby.Server.Implementations/HttpClientManager/HttpClientManager.cs
@@ -389,7 +389,7 @@ namespace Emby.Server.Implementations.HttpClientManager
{
options.ResourcePool?.Release();
- throw new HttpException(string.Format("Connection to {0} timed out", options.Url)) { IsTimedOut = true };
+ throw new HttpException($"Connection to {options.Url} timed out") { IsTimedOut = true };
}
if (options.LogRequest)