From dd422e936bb139c27ad1a2ed66ac57f3a7100cfd Mon Sep 17 00:00:00 2001 From: ProfYaffle Date: Sat, 1 Sep 2018 12:37:16 +0100 Subject: [PATCH] WebUI: fix channel tag lookup for autorec (local, not global) --- 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 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; -- 2.47.2