From c9c99c549bfb05d13f1c43eac45890d0f9a4cf06 Mon Sep 17 00:00:00 2001 From: Julius Knorr Date: Mon, 14 Oct 2024 08:16:25 +0200 Subject: [PATCH] fix: Properly call parent constructor for remote activity job Signed-off-by: Julius Knorr [skip ci] --- lib/BackgroundJob/RemoteActivity.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/BackgroundJob/RemoteActivity.php b/lib/BackgroundJob/RemoteActivity.php index 6ef19bedd..fb740d276 100644 --- a/lib/BackgroundJob/RemoteActivity.php +++ b/lib/BackgroundJob/RemoteActivity.php @@ -35,7 +35,8 @@ class RemoteActivity extends QueuedJob { /** @var ICloudIdManager */ protected $cloudIdManager; - public function __construct(IClientService $clientService, ICloudIdManager $cloudIdManager) { + public function __construct(ITimeFactory $timeFactory, IClientService $clientService, ICloudIdManager $cloudIdManager) { + parent::__construct($timeFactory); $this->clientService = $clientService; $this->cloudIdManager = $cloudIdManager; }