summaryrefslogtreecommitdiff
path: root/dvbdevice.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2020-06-10 14:52:43 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2020-06-10 14:52:43 +0200
commit8a282ef267b73c4d4a6f03e174946fd23692f58e (patch)
treea8b68b301ac4f8a01faa4a39b954dcdc7f6364c6 /dvbdevice.c
parent709055980e6f6ed76399cdba032eb5094ec117f5 (diff)
downloadvdr-8a282ef267b73c4d4a6f03e174946fd23692f58e.tar.gz
vdr-8a282ef267b73c4d4a6f03e174946fd23692f58e.tar.bz2
Added a device hook for detecting whether a device provides EIT data
Diffstat (limited to 'dvbdevice.c')
-rw-r--r--dvbdevice.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c
index 562d2697..66aedd89 100644
--- a/dvbdevice.c
+++ b/dvbdevice.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbdevice.c 4.22 2020/05/04 08:50:20 kls Exp $
+ * $Id: dvbdevice.c 4.23 2020/06/10 14:52:43 kls Exp $
*/
#include "dvbdevice.h"
@@ -2244,7 +2244,7 @@ bool cDvbDevice::ProvidesChannel(const cChannel *Channel, int Priority, bool *Ne
bool cDvbDevice::ProvidesEIT(void) const
{
- return dvbTuner != NULL;
+ return dvbTuner != NULL && DeviceHooksProvidesEIT();
}
int cDvbDevice::NumProvidedSystems(void) const