Skip to content

Commit

Permalink
Fix case of BackgroundJob call
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-davis committed Jul 8, 2019
1 parent fa39af8 commit c1b5129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/AppFramework/Core/API.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public function clearHook($signalClass=false, $signalName=false) {
* @deprecated Use \OC::$server->getJobList()->add();
*/
public function addRegularTask($className, $methodName) {
\OCP\Backgroundjob::addRegularTask($className, $methodName);
\OCP\BackgroundJob::addRegularTask($className, $methodName);
}

/**
Expand Down

0 comments on commit c1b5129

Please sign in to comment.