aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Sommerfeld <kai.sommerfeld@gmx.com>2015-11-21 20:10:36 +0100
committerKai Sommerfeld <kai.sommerfeld@gmx.com>2015-11-21 20:10:36 +0100
commit98e0275a2047928b2b5d01e32b17b1f52eaba943 (patch)
tree4ba45d538e9442e24c81c1a3aa1b9711326eca24
parent49a2f4eb2fb6260b34f1583484dea33f477937b3 (diff)
parentdb06e599266f63a310d753757ebf1b8d72ea7840 (diff)
Merge pull request #8414 from metaron-uk/activeRecord16.0b2-Jarvis
[PVR] Fix for blank Currently In Prog Recordings
-rw-r--r--xbmc/pvr/timers/PVRTimers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/pvr/timers/PVRTimers.cpp b/xbmc/pvr/timers/PVRTimers.cpp
index 223074abbf..e7a745b330 100644
--- a/xbmc/pvr/timers/PVRTimers.cpp
+++ b/xbmc/pvr/timers/PVRTimers.cpp
@@ -380,7 +380,7 @@ int CPVRTimers::AmountActiveRecordings(void) const
for (MapTags::const_iterator it = m_tags.begin(); it != m_tags.end(); ++it)
for (VecTimerInfoTag::const_iterator timerIt = it->second->begin(); timerIt != it->second->end(); ++timerIt)
- if ((*timerIt)->IsRecording())
+ if ((*timerIt)->IsRecording() && !(*timerIt)->IsRepeating())
++iReturn;
return iReturn;