diff options
| author | Bond_009 <bond.009@outlook.com> | 2021-06-27 18:20:37 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2021-06-27 18:20:37 +0200 |
| commit | 4e80eac5f36f497925cfe0af4c9fc81684de3f0d (patch) | |
| tree | 75a60a83f2e8516d00ac5909ea766e377dc71384 | |
| parent | 94056049131a8573d7a4d0690da04c0e8bc240ad (diff) | |
Fix QuickConnect
| -rw-r--r-- | Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs b/Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs index 6f9797969..898cbedbb 100644 --- a/Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs +++ b/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); |
