Add DeviceHooksProvidesEIT() from vdr-2.4.3+ (#68)

This commit is contained in:
Winfried Koehler 2021-01-31 12:41:04 +01:00 committed by GitHub
parent df81905821
commit 43b60b1566
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 defined(APIVERSNUM) && APIVERSNUM < 20403
return (SatipConfig.GetEITScan());
#else
return (SatipConfig.GetEITScan()) && DeviceHooksProvidesEIT();
#endif
}
int cSatipDevice::NumProvidedSystems(void) const