From 777e4108b96e6fa15ce3ed2bd0592a3e427bcea2 Mon Sep 17 00:00:00 2001 From: Adam Sutton Date: Sat, 17 Nov 2012 12:43:41 +0000 Subject: [PATCH] webui: Fix mistake in previous update to iptv.js --- src/webui/static/app/iptv.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webui/static/app/iptv.js b/src/webui/static/app/iptv.js index 4cd4f35e..e1c9a41b 100644 --- a/src/webui/static/app/iptv.js +++ b/src/webui/static/app/iptv.js @@ -113,10 +113,10 @@ tvheadend.iptv = function(adapterId) { editable : false, mode : 'local', triggerAction : 'all', - store : tvheadend.servicetypeStore + store : servicetypeStore }), renderer : function(value, metadata, record, row, col, store) { - var val = value ? tvheadend.servicetypeStore.getById(value) : null; + var val = value ? servicetypeStore.getById(value) : null; return val ? val.get('str') : 'Unset'; }