mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-18 19:23:35 +03:00
add missing semicolon
This commit is contained in:
parent
b6d2ba2019
commit
499b1c2e70
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ electron.app.on('ready', () => {
|
||||||
|
|
||||||
if (vectorConfig.update_base_url) {
|
if (vectorConfig.update_base_url) {
|
||||||
console.log(`Starting auto update with base URL: ${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 {
|
} else {
|
||||||
console.log('No update_base_url is defined: auto update is disabled');
|
console.log('No update_base_url is defined: auto update is disabled');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue