Bond_009 преди 4 години
родител
ревизия
4e80eac5f3
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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);