Fix autolaunch setting appearing toggled off

Fixes https://github.com/vector-im/riot-web/issues/9123

The value used here is a function which returns a promise, not a flag.
This commit is contained in:
Travis Ralston 2019-04-02 17:59:47 -06:00
parent 958260d559
commit f36a24fef0

View file

@ -139,7 +139,7 @@ ipcMain.on('ipcCall', async function(ev, payload) {
ret = autoUpdater.getFeedURL();
break;
case 'getAutoLaunchEnabled':
ret = launcher.isEnabled;
ret = await launcher.isEnabled();
break;
case 'setAutoLaunchEnabled':
if (args[0]) {