diff options
author | Joas Schilling <coding@schilljs.com> | 2017-03-13 15:52:16 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-03-13 15:52:16 +0100 |
commit | beb3f92c4da65a93a6f8df9b3772a221cf3637e5 (patch) | |
tree | 6d3b3bd032cdb89582b2f1f2c885945933780b41 /settings | |
parent | c1cf872f1d99a614bf9d070d1923b78e3e2e26fb (diff) | |
download | nextcloud-server-beb3f92c4da65a93a6f8df9b3772a221cf3637e5.tar.gz nextcloud-server-beb3f92c4da65a93a6f8df9b3772a221cf3637e5.zip |
Remove the double password confirmation on changing cron
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'settings')
-rw-r--r-- | settings/js/admin.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/settings/js/admin.js b/settings/js/admin.js index 094b12b2bab..985e318e34b 100644 --- a/settings/js/admin.js +++ b/settings/js/admin.js @@ -46,9 +46,12 @@ $(document).ready(function(){ if($(this).is(':checked')){ var mode = $(this).val(); if (mode === 'ajax' || mode === 'webcron' || mode === 'cron') { - OCP.AppConfig.setValue('core', 'backgroundjobs_mode', mode); - // clear cron errors on background job mode change - OCP.AppConfig.deleteKey('core', 'cronErrors'); + OCP.AppConfig.setValue('core', 'backgroundjobs_mode', mode, { + success: function() { + // clear cron errors on background job mode change + OCP.AppConfig.deleteKey('core', 'cronErrors'); + } + }); } } }); |