Try to supress pre-upgrade backgroundjob error

This commit is contained in:
Robin Appelman 2013-04-21 00:58:15 +02:00
parent 07f510692c
commit 40de36a8f3
1 changed files with 1 additions and 1 deletions

View File

@ -562,7 +562,7 @@ class OC {
public static function registerCacheHooks() {
// register cache cleanup jobs
try { //if this is executed before the upgrade to the new backgroundjob system is completed it will throw an exception
\OCP\BackgroundJob::registerJob('OC_Cache_FileGlobalGC');
@\OCP\BackgroundJob::registerJob('OC_Cache_FileGlobalGC');
} catch (Exception $e) {
}