Add DeviceHooksProvidesEIT() from vdr-2.4.3+

This commit is contained in:
wirbel 2021-01-30 11:43:16 +01:00
parent df81905821
commit f5874c576a
1 changed files with 4 additions and 0 deletions

View File

@ -309,7 +309,11 @@ bool cSatipDevice::ProvidesChannel(const cChannel *channelP, int priorityP, bool
bool cSatipDevice::ProvidesEIT(void) const
{
#if VDRVERSNUM < 20404
return (SatipConfig.GetEITScan());
#else
return (SatipConfig.GetEITScan()) && DeviceHooksProvidesEIT();
#endif
}
int cSatipDevice::NumProvidedSystems(void) const