From 5f0cc2c2dd61cfa49b969eda3a0e43c859e10219 Mon Sep 17 00:00:00 2001 From: Ian Date: Mon, 6 Oct 2014 17:57:47 +0100 Subject: [PATCH] WEB UI: EPG: Fix the channel tag passing to autorec (completes fix to #2340) --- src/webui/static/app/epg.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index 99f0301e..3f19b300 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;