mirror of
https://github.com/Eugeny/tabby
synced 2024-11-16 01:38:07 +00:00
Merge
This commit is contained in:
commit
ca05c1b819
1 changed files with 6 additions and 1 deletions
|
@ -38,7 +38,12 @@ export class UpdaterService {
|
|||
})
|
||||
|
||||
this.logger.debug('Checking for updates')
|
||||
this.electron.autoUpdater.checkForUpdates()
|
||||
|
||||
try {
|
||||
this.electron.autoUpdater.checkForUpdates()
|
||||
} catch (e) {
|
||||
this.logger.info('Squirrel updater unavailable, falling back')
|
||||
}
|
||||
}
|
||||
|
||||
async check (): Promise<boolean> {
|
||||
|
|
Loading…
Reference in a new issue