Bläddra i källkod

Fix QuickConnect

Bond_009 4 år sedan
förälder
incheckning
4e80eac5f3
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs

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

@@ -207,7 +207,7 @@ namespace Emby.Server.Implementations.QuickConnect
             // Expire stale connection requests
             foreach (var (_, currentRequest) in _currentRequests)
             {
-                if (expireAll || currentRequest.DateAdded > minTime)
+                if (expireAll || currentRequest.DateAdded < minTime)
                 {
                     var code = currentRequest.Code;
                     _logger.LogDebug("Removing expired request {Code}", code);