Browse Source

Add missing using

crobibero 4 years ago
parent
commit
c02d0ceb57
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Emby.Dlna/Eventing/DlnaEventManager.cs

+ 1 - 1
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)