From: barzog Date: Mon, 13 Feb 2023 08:27:48 +0000 (+0300) Subject: Fix for DVB Grabber and IPTV Stream X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1366a0669c785141a128678a671c008abd1fb5a;p=thirdparty%2Ftvheadend.git Fix for DVB Grabber and IPTV Stream --- diff --git a/src/epggrab/otamux.c b/src/epggrab/otamux.c index 182aac389..4888158ba 100644 --- a/src/epggrab/otamux.c +++ b/src/epggrab/otamux.c @@ -353,6 +353,10 @@ epggrab_mux_start ( mpegts_mux_t *mm, void *p ) epggrab_module_t *m; epggrab_ota_mux_t *ota; + int epg_flag = mm->mm_is_epg(mm); + if (epg_flag < 0 || epg_flag == MM_EPG_DISABLE) + return; + /* Already started */ TAILQ_FOREACH(ota, &epggrab_ota_active, om_q_link) if (!uuid_cmp(&ota->om_mux_uuid, &mm->mm_id.in_uuid))