From: Ian Date: Mon, 6 Oct 2014 16:57:47 +0000 (+0100) Subject: WEB UI: EPG: Fix the channel tag passing to autorec (completes fix to #2340) X-Git-Tag: v4.1~1095 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f0cc2c2dd61cfa49b969eda3a0e43c859e10219;p=thirdparty%2Ftvheadend.git WEB UI: EPG: Fix the channel tag passing to autorec (completes fix to #2340) --- diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index 99f0301e9..3f19b300d 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -862,7 +862,7 @@ tvheadend.epg = function() { }; if (params.title) conf.title = params.title; if (params.channel) conf.channel = params.channel; - if (params.tag) conf.tag = params.channelTag; + if (params.channelTag) conf.tag = params.channelTag; if (params.contentType) conf.content_type = params.contentType; if (params.durationMin) conf.minduration = params.durationMin; if (params.durationMax) conf.maxduration = params.durationMax;