diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-08-26 16:08:10 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-08-26 16:08:10 +0200 |
commit | 9ff9803da46c5dde4652d71a898f21d54bd09140 (patch) | |
tree | 2afbb3fa3aa315e03aaa00a5f24cd4b52279aa58 /apps/dav | |
parent | b1a0d464ba599e32936f284e7bdba0bf246ab70c (diff) | |
download | nextcloud-server-9ff9803da46c5dde4652d71a898f21d54bd09140.tar.gz nextcloud-server-9ff9803da46c5dde4652d71a898f21d54bd09140.zip |
Fix missing parent constructor call in DAV reminder job
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/lib/BackgroundJob/BuildReminderIndexBackgroundJob.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/dav/lib/BackgroundJob/BuildReminderIndexBackgroundJob.php b/apps/dav/lib/BackgroundJob/BuildReminderIndexBackgroundJob.php index 15c52cd8525..01d39a2193b 100644 --- a/apps/dav/lib/BackgroundJob/BuildReminderIndexBackgroundJob.php +++ b/apps/dav/lib/BackgroundJob/BuildReminderIndexBackgroundJob.php @@ -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; |