From 1418041e14e91242a7e820a7c740e3e40cb375f9 Mon Sep 17 00:00:00 2001 From: Jacek Tomasiak Date: Sun, 30 Sep 2012 19:11:06 +0200 Subject: [PATCH] fixed content type translation --- 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 1b09184b..9fc74aa8 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -20,7 +20,7 @@ tvheadend.contentGroupLookupName = function(code) { ret = ""; tvheadend.ContentGroupStore.each(function(r) { if (r.data.code == code) ret = r.data.name; - else if (ret == "" && r.data.code == code & 0xF0) ret = r.data.name; + else if (ret == "" && r.data.code == (code & 0xF0)) ret = r.data.name; }); return ret; }