]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
WebUI: fix channel tag lookup for autorec (local, not global)
authorProfYaffle <ian@sproink.co.uk>
Sat, 1 Sep 2018 11:37:16 +0000 (12:37 +0100)
committerJaroslav Kysela <perex@perex.cz>
Mon, 3 Sep 2018 13:43:34 +0000 (15:43 +0200)
src/webui/static/app/epg.js

index 8a2a12efafe922f82831860a11538c6e0a84746f..67e66651f4ffe5876e83ad22a21deb3430562876 100644 (file)
@@ -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;