From: Damjan Marion Date: Sat, 24 May 2014 22:54:41 +0000 (+0200) Subject: webui: load mpegts.js even if linuxdvb is disabled X-Git-Tag: v4.1~2054^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f03dd8aa37c3cd7067d704c82665abf44f232db;p=thirdparty%2Ftvheadend.git webui: load mpegts.js even if linuxdvb is disabled DVB input tabs are also needed for IPTV service. Also this fixes webui which doesn't load properly when --disable-linuxdvb is used. --- diff --git a/src/webui/extjs.c b/src/webui/extjs.c index d83e5039a..3a3af8d3e 100755 --- a/src/webui/extjs.c +++ b/src/webui/extjs.c @@ -150,7 +150,7 @@ extjs_root(http_connection_t *hc, const char *remain, void *opaque) extjs_load(hq, "static/app/tvadapters.js"); extjs_load(hq, "static/app/idnode.js"); extjs_load(hq, "static/app/esfilter.js"); -#if ENABLE_LINUXDVB +#if ENABLE_MPEGTS extjs_load(hq, "static/app/mpegts.js"); #endif extjs_load(hq, "static/app/iptv.js");