diff --git a/core/src/modules/updater.js b/core/src/modules/updater.js index f08c78fc..4c82f032 100644 --- a/core/src/modules/updater.js +++ b/core/src/modules/updater.js @@ -80,7 +80,10 @@ export default class Updater extends Module { } events(ipc) { - ipc.on('updater-startUpdate', (_, updates) => this.updateAll(updates)); + ipc.on('updater-startUpdate', (_, updates) => { + clearInterval(this.updaterThread); + this.updateAll(updates); + }); ipc.on('debug-updater-forceUpdate', () => { this.checkForUpdates(true); });