From a0167a3f9250653c48048aa754d37072fec5e3ce Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 23 May 2016 15:10:19 +0200 Subject: Fix registering background job Starting with 9.1 the autoloader will be case sensitive --- config/appconfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']); } -- cgit v1.2.3