summaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/AppInfo/Application.php
diff options
context:
space:
mode:
authorGeorg Ehrke <developer@georgehrke.com>2019-08-09 20:25:21 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2019-08-15 20:03:51 +0200
commitbcce568c6d892ccacc598c5d5bfa6b24c3284741 (patch)
tree5ecf26f407ac71ef7b97e99a9f3f026c3ec6974e /apps/dav/lib/AppInfo/Application.php
parent7c4a8a3bdf6d8c0c12cf7cab93cc465c83c4ec8f (diff)
downloadnextcloud-server-bcce568c6d892ccacc598c5d5bfa6b24c3284741.tar.gz
nextcloud-server-bcce568c6d892ccacc598c5d5bfa6b24c3284741.zip
Support recurring events + repeating alarms
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'apps/dav/lib/AppInfo/Application.php')
-rw-r--r--apps/dav/lib/AppInfo/Application.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/dav/lib/AppInfo/Application.php b/apps/dav/lib/AppInfo/Application.php
index 5d17dc5a241..80e9dea8829 100644
--- a/apps/dav/lib/AppInfo/Application.php
+++ b/apps/dav/lib/AppInfo/Application.php
@@ -231,12 +231,10 @@ class Application extends App {
);
/** @var ReminderService $reminderBackend */
- $reminderService= $this->getContainer()->query(ReminderService::class);
+ $reminderService = $this->getContainer()->query(ReminderService::class);
$reminderService->onTouchCalendarObject(
$eventName,
- $event->getArgument('calendarData'),
- $event->getArgument('shares'),
$event->getArgument('objectData')
);
};