From: Adam Sutton Date: Sat, 17 Nov 2012 12:43:41 +0000 (+0000) Subject: webui: Fix mistake in previous update to iptv.js X-Git-Tag: v3.5~277 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=777e4108b96e6fa15ce3ed2bd0592a3e427bcea2;p=thirdparty%2Ftvheadend.git webui: Fix mistake in previous update to iptv.js --- diff --git a/src/webui/static/app/iptv.js b/src/webui/static/app/iptv.js index 4cd4f35e9..e1c9a41b9 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'; }