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.
pull/9368/head
Travis Ralston 2019-04-02 17:59:47 -06:00
parent 958260d559
commit f36a24fef0
1 changed files with 1 additions and 1 deletions

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]) {