From: kos Date: Fri, 24 Aug 2012 05:31:45 +0000 (+0900) Subject: fix bug. X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=d9b25e3e09995a05ffdc1ef9f37e54beee77505c fix bug. - occur crash on solo/duo when was setted advanced rc. --- 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()