WEB UI: EPG: Fix the channel tag passing to autorec (completes fix to #2340)

This commit is contained in:
Ian 2014-10-06 17:57:47 +01:00 committed by Jaroslav Kysela
parent 8e6538a0bc
commit 5f0cc2c2dd

View 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;