diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2021-02-14 12:36:41 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2021-02-14 12:36:41 +0100 |
commit | 19f7476f77039b770ff22d12550ab836012cfd38 (patch) | |
tree | 032b685e3ee19cdf2b1aab9a6ca79fd16b86c401 /apps/dav/lib/CalDAV/CalendarHome.php | |
parent | d93a3665a06d40bdeeb70b9de9a990a93597fae5 (diff) | |
download | nextcloud-server-19f7476f77039b770ff22d12550ab836012cfd38.tar.gz nextcloud-server-19f7476f77039b770ff22d12550ab836012cfd38.zip |
Use correct namespace (casing) in CalendarHome
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/dav/lib/CalDAV/CalendarHome.php')
-rw-r--r-- | apps/dav/lib/CalDAV/CalendarHome.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/CalendarHome.php b/apps/dav/lib/CalDAV/CalendarHome.php index 1a00ad94af5..c746ab04112 100644 --- a/apps/dav/lib/CalDAV/CalendarHome.php +++ b/apps/dav/lib/CalDAV/CalendarHome.php @@ -138,7 +138,7 @@ class CalendarHome extends \Sabre\CalDAV\CalendarHome { return new Outbox($this->config, $this->principalInfo['uri']); } if ($name === 'notifications' && $this->caldavBackend instanceof NotificationSupport) { - return new \Sabre\CalDAv\Notifications\Collection($this->caldavBackend, $this->principalInfo['uri']); + return new \Sabre\CalDAV\Notifications\Collection($this->caldavBackend, $this->principalInfo['uri']); } // Calendars |