summaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/BackgroundJob
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-05-07 11:43:31 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2021-05-07 12:13:47 +0200
commitf5462650f1480bf23a58285e0e4476957a0720db (patch)
treef37e180d90b1bbf3d92b175f13d25534191503ff /apps/dav/lib/BackgroundJob
parent257613e6efd429dd1c6cde4abbcbb590d32408e8 (diff)
downloadnextcloud-server-f5462650f1480bf23a58285e0e4476957a0720db.tar.gz
nextcloud-server-f5462650f1480bf23a58285e0e4476957a0720db.zip
Clean up reminder actions and call methods directly
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/dav/lib/BackgroundJob')
-rw-r--r--apps/dav/lib/BackgroundJob/BuildReminderIndexBackgroundJob.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/BackgroundJob/BuildReminderIndexBackgroundJob.php b/apps/dav/lib/BackgroundJob/BuildReminderIndexBackgroundJob.php
index ad5bf7736ab..badfc2ca041 100644
--- a/apps/dav/lib/BackgroundJob/BuildReminderIndexBackgroundJob.php
+++ b/apps/dav/lib/BackgroundJob/BuildReminderIndexBackgroundJob.php
@@ -125,7 +125,7 @@ class BuildReminderIndexBackgroundJob extends QueuedJob {
$row['component'] = $row['componenttype'];
try {
- $this->reminderService->onTouchCalendarObject('\OCA\DAV\CalDAV\CalDavBackend::createCalendarObject', $row);
+ $this->reminderService->onCalendarObjectCreate($row);
} catch (\Exception $ex) {
$this->logger->logException($ex);
}