style: add missing semicolon (#526)

* fix(updater): check updater error is exists or not

* set default error message

* style: add missing semicolon

* style: add missing semicolon
This commit is contained in:
Róbert Kiss
2017-12-22 21:38:44 +01:00
committed by László Monda
parent 838a92836c
commit 0b69d01a0d

View File

@@ -37,7 +37,7 @@ export class AppUpdateService extends MainServiceBase {
});
autoUpdater.on('error', (ev: any, err: string) => {
this.logService.error('[AppUpdateService] error', err)
this.logService.error('[AppUpdateService] error', err);
let msg = 'Electron updater error';
if (err) {
msg = err.substr(0, 100);