summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authoranoy <anoymouserver+github@mailbox.org>2020-10-02 14:34:46 +0200
committerSean Molenaar <SMillerDev@users.noreply.github.com>2020-10-02 15:43:06 +0200
commit4fffe42eb9064373cbdedd90f1c4dc3e9fa82c29 (patch)
tree7fe97edb91175a80f67b3ad4ce60379933a015f0 /lib
parent9e84bf054e63af3844c39919f3185c19c26ed014 (diff)
fix incorrect cron recommendation
Signed-off-by: anoy <anoymouserver+github@mailbox.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/Service/StatusService.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Service/StatusService.php b/lib/Service/StatusService.php
index c2daa0c0b..acfdf6be1 100644
--- a/lib/Service/StatusService.php
+++ b/lib/Service/StatusService.php
@@ -38,7 +38,7 @@ class StatusService
public function isProperlyConfigured(): bool
{
- $cronMode = $this->settings->getSystemValue('backgroundjobs_mode');
+ $cronMode = $this->settings->getAppValue('core', 'backgroundjobs_mode');
$cronOff = !$this->settings->getAppValue(
Application::NAME,
'useCronUpdates',