diff options
-rw-r--r-- | xbmc/pvr/PVRManager.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/xbmc/pvr/PVRManager.cpp b/xbmc/pvr/PVRManager.cpp index cc98c4359a..9a8f7c5e48 100644 --- a/xbmc/pvr/PVRManager.cpp +++ b/xbmc/pvr/PVRManager.cpp @@ -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; |