From 9ff9803da46c5dde4652d71a898f21d54bd09140 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 26 Aug 2019 16:08:10 +0200 Subject: [PATCH] Fix missing parent constructor call in DAV reminder job Signed-off-by: Christoph Wurst --- apps/dav/lib/BackgroundJob/BuildReminderIndexBackgroundJob.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/dav/lib/BackgroundJob/BuildReminderIndexBackgroundJob.php b/apps/dav/lib/BackgroundJob/BuildReminderIndexBackgroundJob.php index 15c52cd852..01d39a2193 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;