diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-05-07 11:43:31 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-05-07 12:13:47 +0200 |
commit | f5462650f1480bf23a58285e0e4476957a0720db (patch) | |
tree | f37e180d90b1bbf3d92b175f13d25534191503ff /apps/dav/lib/BackgroundJob | |
parent | 257613e6efd429dd1c6cde4abbcbb590d32408e8 (diff) | |
download | nextcloud-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.php | 2 |
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); } |