diff --git a/coreengine/viewelementsdisplaychannel.c b/coreengine/viewelementsdisplaychannel.c index 875a588..2004d5a 100644 --- a/coreengine/viewelementsdisplaychannel.c +++ b/coreengine/viewelementsdisplaychannel.c @@ -2,6 +2,7 @@ #include "../config.h" #include "../extensions/helpers.h" #include "../services/scraper2vdr.h" +#include "../services/epgtimer.h" /****************************************************************** * cVeDcChannelInfo @@ -323,6 +324,10 @@ void cVeDcStatusInfo::Set(const cChannel *c) { if (const cTimer *Timer = globalTimers->At(i)) if (Timer->Recording()) isRecording = true; + else if (cEpgTimer_Interface_V1* epgTimer = dynamic_cast((cTimer*)Timer)) { + if (epgTimer->State() == 'R') + isRecording = true; + } tokenContainer->AddIntToken((int)eDCStatusInfoIT::isRadio, isRadio); tokenContainer->AddIntToken((int)eDCStatusInfoIT::hasVT, hasVT);