From: Jaroslav Kysela Date: Mon, 12 Dec 2016 15:37:18 +0000 (+0100) Subject: epggrab: quickfix for the previous patch X-Git-Tag: v4.2.1~170 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5d2a89708f759393b3d74f9aac8b6c382679466d;p=thirdparty%2Ftvheadend.git epggrab: quickfix for the previous patch --- diff --git a/src/epggrab.c b/src/epggrab.c index d4b039530..2802f578a 100644 --- a/src/epggrab.c +++ b/src/epggrab.c @@ -174,7 +174,8 @@ static void _epggrab_load ( void ) epggrab_conf.cron = strdup("# Default config (00:04 and 12:04 everyday)\n4 */12 * * *"); LIST_FOREACH(mod, &epggrab_modules, link) // enable only OTA EIT and OTA PSIP by default if (mod->type == EPGGRAB_OTA && - (mod->subsys == LS_TBL_EIT || mod->subsys == LS_PSIP)) { + ((mod->subsys == LS_TBL_EIT && strcmp(mod->id, "eit") == 0) || + mod->subsys == LS_PSIP)) { mod->enabled = 1; epggrab_activate_module(mod, 1); }