parent
104e213934
commit
28f1b8a7a0
1 changed files with 4 additions and 1 deletions
|
|
@ -1012,7 +1012,10 @@ def on_monitored_pid_death(self, pid, exit_status):
|
|||
except Exception as e:
|
||||
log_error('Failed to read data from update check process, with error: {}'.format(e))
|
||||
else:
|
||||
process_current_release(raw)
|
||||
try:
|
||||
process_current_release(raw)
|
||||
except Exception as e:
|
||||
log_error('Failed to process update check data {!r}, with error: {}'.format(raw, e))
|
||||
|
||||
def notification_activated(self, identifier):
|
||||
if identifier == 'new-version':
|
||||
|
|
|
|||
Loading…
Reference in a new issue