Browse Source

Add IDisposable

ConfusedPolarBear 5 years ago
parent
commit
82887ec710
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs

+ 1 - 1
Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs

@@ -18,7 +18,7 @@ namespace Emby.Server.Implementations.QuickConnect
     /// <summary>
     /// Quick connect implementation.
     /// </summary>
-    public class QuickConnectManager : IQuickConnect
+    public class QuickConnectManager : IQuickConnect, IDisposable
     {
         private readonly RNGCryptoServiceProvider _rng = new RNGCryptoServiceProvider();
         private readonly ConcurrentDictionary<string, QuickConnectResult> _currentRequests = new ConcurrentDictionary<string, QuickConnectResult>();