Skip to content

Commit c9c99c5

Browse files
juliusknorrbackportbot[bot]
authored andcommitted
fix: Properly call parent constructor for remote activity job
Signed-off-by: Julius Knorr <jus@bitgrid.net> [skip ci]
1 parent f9105e3 commit c9c99c5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/BackgroundJob/RemoteActivity.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ class RemoteActivity extends QueuedJob {
3535
/** @var ICloudIdManager */
3636
protected $cloudIdManager;
3737

38-
public function __construct(IClientService $clientService, ICloudIdManager $cloudIdManager) {
38+
public function __construct(ITimeFactory $timeFactory, IClientService $clientService, ICloudIdManager $cloudIdManager) {
39+
parent::__construct($timeFactory);
3940
$this->clientService = $clientService;
4041
$this->cloudIdManager = $cloudIdManager;
4142
}

0 commit comments

Comments
 (0)