From 6f03dd8aa37c3cd7067d704c82665abf44f232db Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Sun, 25 May 2014 00:54:41 +0200 Subject: [PATCH] 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. --- src/webui/extjs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/extjs.c b/src/webui/extjs.c index d83e5039..3a3af8d3 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");