Skip to content
Snippets Groups Projects
Unverified Commit 7aaa2e12 authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

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

Fix missing parent constructor call in DAV reminder job
parents 505f1004 9ff9803d
No related branches found
No related tags found
No related merge requests found
...@@ -66,6 +66,7 @@ class BuildReminderIndexBackgroundJob extends QueuedJob { ...@@ -66,6 +66,7 @@ class BuildReminderIndexBackgroundJob extends QueuedJob {
ILogger $logger, ILogger $logger,
IJobList $jobList, IJobList $jobList,
ITimeFactory $timeFactory) { ITimeFactory $timeFactory) {
parent::__construct($timeFactory);
$this->db = $db; $this->db = $db;
$this->reminderService = $reminderService; $this->reminderService = $reminderService;
$this->logger = $logger; $this->logger = $logger;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment