From: Jaroslav Kysela Date: Tue, 23 Jan 2018 08:27:56 +0000 (+0100) Subject: otamux: fix the loading of the epg services per mux, fixes #4877 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=181065ceb6865065fd42afe9efadd601c8809fb2;p=thirdparty%2Ftvheadend.git otamux: fix the loading of the epg services per mux, fixes #4877 --- diff --git a/src/epggrab/otamux.c b/src/epggrab/otamux.c index bbe3d7287..99d338265 100644 --- a/src/epggrab/otamux.c +++ b/src/epggrab/otamux.c @@ -789,7 +789,7 @@ epggrab_ota_load_one if ((l2 = htsmsg_get_list(e, "services")) != NULL) { HTSMSG_FOREACH(f2, l2) { tvh_uuid_t u; - if (htsmsg_field_get_uuid(f2, &u)) + if (!htsmsg_field_get_uuid(f2, &u)) epggrab_ota_service_add(map, ota, &u, 0); } }