Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/BackgroundJob/IMipMessageJob.php')
-rw-r--r--lib/BackgroundJob/IMipMessageJob.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/BackgroundJob/IMipMessageJob.php b/lib/BackgroundJob/IMipMessageJob.php
index 371645c91..c2038ac92 100644
--- a/lib/BackgroundJob/IMipMessageJob.php
+++ b/lib/BackgroundJob/IMipMessageJob.php
@@ -33,12 +33,12 @@ class IMipMessageJob extends TimedJob {
private IMipService $iMipService;
public function __construct(ITimeFactory $time,
- IMipService $iMipService) {
+ IMipService $draftsService) {
parent::__construct($time);
// Run once per hour
$this->setInterval(60 * 60);
- $this->iMipService = $iMipService;
+ $this->iMipService = $draftsService;
}
protected function run($argument): void {