]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
WEBUI JS: EPG: Fix the clickable channel linking (autorec issue)
authorJaroslav Kysela <perex@perex.cz>
Mon, 29 Sep 2014 14:53:09 +0000 (16:53 +0200)
committerJaroslav Kysela <perex@perex.cz>
Mon, 29 Sep 2014 14:53:09 +0000 (16:53 +0200)
src/webui/static/app/epg.js

index 5d03dcc2048e781485933541bb280c250edaff5e..d832bc788f2c28ed1ce14c9e167c572cf194b43a 100644 (file)
@@ -771,9 +771,10 @@ tvheadend.epg = function() {
                 return false;
             }
         } else if (column.dataIndex === 'channelName') {
-            var value = grid.getStore().getAt(index).data[column.dataIndex];
+            var rec = grid.getStore().getAt(index).data;
+            var value = rec['channelUuid'];
             if (value && epgStore.baseParams.channel !== value) {
-                epgFilterChannels.setValue(value);
+                epgFilterChannels.setValue(rec['channelName']);
                 epgFilterChannelSet(value);
                 return false;
             }