1
0
mirror of https://github.com/rofafor/vdr-plugin-satip.git synced 2023-10-10 13:37:42 +02:00

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

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