mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-26 19:01:27 +00:00
parent
104e213934
commit
28f1b8a7a0
1 changed files with 4 additions and 1 deletions
|
|
@ -1012,7 +1012,10 @@ class Boss:
|
|||
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…
Add table
Add a link
Reference in a new issue