[pvr] fix: wrong condition in PVRManager::IsIdle (Ticket #14630)
[vuplus_xbmc] / xbmc / pvr / PVRManager.cpp
index cc98c43..9a8f7c5 100644 (file)
@@ -1323,10 +1323,8 @@ bool CPVRManager::IsIdle(void) const
     const CDateTime next = m_timers->GetNextEventTime();
     const CDateTimeSpan delta = next - now;
 
-    if (delta < idle)
-    {
+    if (delta <= idle)
       return false;
-    }
   }
 
   return true;