From: ProfYaffle Date: Sat, 1 Sep 2018 11:37:16 +0000 (+0100) Subject: WebUI: fix channel tag lookup for autorec (local, not global) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd422e936bb139c27ad1a2ed66ac57f3a7100cfd;p=thirdparty%2Ftvheadend.git WebUI: fix channel tag lookup for autorec (local, not global) --- diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index 8a2a12efa..67e66651f 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -69,7 +69,7 @@ tvheadend.channelLookupName = function(key) { tvheadend.channelTagLookupName = function(key) { var s = ""; var tags = tvheadend.getChannelTags(); - var index = tvheadend.tags.find('key', key); + var index = tags.find('key', key); if (index !== -1) s = tags.getAt(index).get('val'); return s;