add missing semicolon

pull/4176/head
Michael Telatynski 2017-06-20 14:05:17 +01:00 committed by GitHub
parent b6d2ba2019
commit 499b1c2e70
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ electron.app.on('ready', () => {
if (vectorConfig.update_base_url) {
console.log(`Starting auto update with base URL: ${vectorConfig.update_base_url}`);
updater.start(vectorConfig.update_base_url)
updater.start(vectorConfig.update_base_url);
} else {
console.log('No update_base_url is defined: auto update is disabled');
}