Skip to content

Commit

Permalink
Merge pull request #9368 from vector-im/travis/autolaunch
Browse files Browse the repository at this point in the history
Fix autolaunch setting appearing toggled off
  • Loading branch information
turt2live authored Apr 3, 2019
2 parents 958260d + f36a24f commit 50b4906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electron_app/src/electron-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]) {
Expand Down

0 comments on commit 50b4906

Please sign in to comment.