From d9b25e3e09995a05ffdc1ef9f37e54beee77505c Mon Sep 17 00:00:00 2001 From: kos Date: Fri, 24 Aug 2012 14:31:45 +0900 Subject: [PATCH] fix bug. - occur crash on solo/duo when was setted advanced rc. --- lib/python/Screens/InfoBarGenerics.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 6a148eb..445551d 100755 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -1859,8 +1859,11 @@ class InfoBarRedButton: #self.onReadyForAIT.remove(x) def updateInfomation(self): - self["HbbtvApplication"].setApplicationName("") - self.updateAIT() + try: + self["HbbtvApplication"].setApplicationName("") + self.updateAIT() + except Exception, ErrMsg: + pass def detectedHbbtvApplication(self): service = self.session.nav.getCurrentService() -- 2.7.4