aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2021-06-27 18:20:37 +0200
committerBond_009 <bond.009@outlook.com>2021-06-27 18:20:37 +0200
commit4e80eac5f36f497925cfe0af4c9fc81684de3f0d (patch)
tree75a60a83f2e8516d00ac5909ea766e377dc71384 /Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs
parent94056049131a8573d7a4d0690da04c0e8bc240ad (diff)
Fix QuickConnect
Diffstat (limited to 'Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs')
-rw-r--r--Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs2
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);