mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
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:
parent
958260d559
commit
f36a24fef0
@ -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]) {
|
||||
|
Loading…
Reference in New Issue
Block a user