summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2016-05-23 15:10:19 +0200
committerRobin Appelman <robin@icewind.nl>2016-05-23 15:10:19 +0200
commita0167a3f9250653c48048aa754d37072fec5e3ce (patch)
tree7b821bcf68e910eb9f060d7d42bcb61663a92bfb
parent1fb4c570b159476945eea710a6fb8f46bf5de849 (diff)
Fix registering background job
Starting with 9.1 the autoloader will be case sensitive
-rw-r--r--config/appconfig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/appconfig.php b/config/appconfig.php
index 55c408c72..55dcd6d1a 100644
--- a/config/appconfig.php
+++ b/config/appconfig.php
@@ -84,7 +84,7 @@ class AppConfig {
$this->registerNavigation();
$this->registerHooks();
// IJob API is fucked up, so silence the code checker
- $class = '\OCP\Backgroundjob';
+ $class = '\OCP\BackgroundJob';
$class::addRegularTask($this->config['cron']['job'], 'run');
App::registerAdmin($this->config['id'], $this->config['admin']);
}