mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Merge pull request #8911 from vector-im/t3chguy/no-update
Allow disabling update mechanism
This commit is contained in:
commit
a5a4c167e8
@ -157,6 +157,7 @@ ipcMain.on('ipcCall', async function(ev, payload) {
|
||||
} else {
|
||||
mainWindow.focus();
|
||||
}
|
||||
break;
|
||||
case 'origin_migrate':
|
||||
migratingOrigin = true;
|
||||
await migrateFromOldOrigin();
|
||||
@ -272,10 +273,12 @@ app.on('ready', () => {
|
||||
path: absTarget,
|
||||
});
|
||||
}, (error) => {
|
||||
if (error) console.error('Failed to register protocol')
|
||||
if (error) console.error('Failed to register protocol');
|
||||
});
|
||||
|
||||
if (vectorConfig['update_base_url']) {
|
||||
if (argv['no-update']) {
|
||||
console.log('Auto update disabled via command line flag "--no-update"');
|
||||
} else if (vectorConfig['update_base_url']) {
|
||||
console.log(`Starting auto update with base URL: ${vectorConfig['update_base_url']}`);
|
||||
updater.start(vectorConfig['update_base_url']);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user