]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
WEB UI: EPG: Fix the channel tag passing to autorec (completes fix to #2340)
authorIan <ian@sproink.co.uk>
Mon, 6 Oct 2014 16:57:47 +0000 (17:57 +0100)
committerJaroslav Kysela <perex@perex.cz>
Fri, 10 Oct 2014 07:54:50 +0000 (09:54 +0200)
src/webui/static/app/epg.js

index 99f0301e9dd82035201743d95c676a466c3e6780..3f19b300d821cb2296750cbd14808dedad2a3c58 100644 (file)
@@ -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;