ugly workaround a bluescreen happening when a record timer fires that zaps away
[enigma2.git] / lib / python / Screens / InfoBarGenerics.py
index 13bca8d146bcc9b86c65dc782469fb26d8bba005..2624209cbe336ef712ad7ded8fd23b2983c2c744 100644 (file)
@@ -1412,8 +1412,11 @@ class InfoBarNotifications:
                Notifications.notificationAdded.append(self.checkNotificationsIfExecing)
        
        def checkNotificationsIfExecing(self):
-               if self.execing:
-                       self.checkNotifications()
+               try:
+                       if self.execing:
+                               self.checkNotifications()
+               except:
+                       print "******************************* A SEVERE ERROR HAPPENED... Someone who understands the code... please fix :) *******"
 
        def checkNotifications(self):
                if len(Notifications.notifications):