Merge pull request #16871 from nextcloud/fix/dav-reminder-job-constructor

Fix missing parent constructor call in DAV reminder job
This commit is contained in:
Roeland Jago Douma 2019-08-26 19:30:54 +02:00 committed by GitHub
commit 7aaa2e12ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -66,6 +66,7 @@ class BuildReminderIndexBackgroundJob extends QueuedJob {
ILogger $logger,
IJobList $jobList,
ITimeFactory $timeFactory) {
parent::__construct($timeFactory);
$this->db = $db;
$this->reminderService = $reminderService;
$this->logger = $logger;