diff --git a/src/splash/index.js b/src/splash/index.js index 54c731b..369b853 100644 --- a/src/splash/index.js +++ b/src/splash/index.js @@ -218,7 +218,7 @@ const initOld = () => { // "Old" (not v2 / new, win32 only) on('installing-modules-finished', check); - on('update-manually', e => { + on('manual', e => { splashState.details = e.details; sendState('manual'); }); diff --git a/src/updater/moduleUpdater.js b/src/updater/moduleUpdater.js index 29a55d8..5bb0f8f 100644 --- a/src/updater/moduleUpdater.js +++ b/src/updater/moduleUpdater.js @@ -90,14 +90,9 @@ exports.init = (endpoint, { releaseChannel, version }) => { log('Modules', 'Host manual'); checking = false; - events.emit('update-manually', { + events.emit('manual', { details: d }); - - events.emit('update-check-finished', { - succeeded: true, - updateCount: 1 - }); }); hostUpdater.on('update-downloaded', () => { @@ -106,10 +101,6 @@ exports.init = (endpoint, { releaseChannel, version }) => { events.emit('downloaded-module', { name: 'host' }); - - events.emit('downloading-modules-finished', { - succeeded: 1 - }); }); hostUpdater.on('error', () => {