aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpClientManager/HttpClientManager.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-01-06 20:35:36 +0100
committerBond_009 <bond.009@outlook.com>2019-01-06 20:35:36 +0100
commit07a8e49c4b1e4a2dddbaa49ab6f1ff4f271fbf20 (patch)
tree86cc8c77ebf98985cfa8f4727f0f900d24219042 /Emby.Server.Implementations/HttpClientManager/HttpClientManager.cs
parentb27315bc08d4d224cf090efc24385c7102741089 (diff)
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 d3ba1b683..c95093fc5 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)