aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-08-31 12:45:23 -0600
committercrobibero <cody@robibe.ro>2020-08-31 12:45:23 -0600
commitc02d0ceb57b449d6d547a8c877bf15d584717862 (patch)
tree66eae31fc684b8fd0fd424aaaa4323976c18c5b9
parentf498e1ee59af1413cd4f041227b0296f9ec02a21 (diff)
Add missing using
-rw-r--r--Emby.Dlna/Eventing/DlnaEventManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Dlna/Eventing/DlnaEventManager.cs b/Emby.Dlna/Eventing/DlnaEventManager.cs
index fcc2aaa1e..0c7591494 100644
--- a/Emby.Dlna/Eventing/DlnaEventManager.cs
+++ b/Emby.Dlna/Eventing/DlnaEventManager.cs
@@ -177,7 +177,7 @@ namespace Emby.Dlna.Eventing
try
{
- await _httpClientFactory.CreateClient(NamedClient.Default)
+ using var response = await _httpClientFactory.CreateClient(NamedClient.Default)
.SendAsync(options).ConfigureAwait(false);
}
catch (OperationCanceledException)