Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEB UI: EPG: Fix the channel tag passing to autorec (completes fix to…
… #2340)
  • Loading branch information
ProfYaffle authored and perexg committed Oct 10, 2014
1 parent 8e6538a commit 5f0cc2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/static/app/epg.js
Expand Up @@ -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;
Expand Down

0 comments on commit 5f0cc2c

Please sign in to comment.