diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2023-09-06 17:48:21 +0200 |
---|---|---|
committer | Daniel <mail@danielkesselberg.de> | 2023-09-18 14:09:53 +0200 |
commit | 3a55fb948fed95b9341230e384c562ff8d24cc64 (patch) | |
tree | 1f44d7fe2d4100ef2c7adf58701714b080bb1e61 /apps/dav/lib | |
parent | c0b95e9cc6f683e81ed9405569b11d8d9e39ecb0 (diff) | |
download | nextcloud-server-3a55fb948fed95b9341230e384c562ff8d24cc64.tar.gz nextcloud-server-3a55fb948fed95b9341230e384c562ff8d24cc64.zip |
fix(caldav): add webroot to objectid for activities
A calendar uri includes the webroot: example.com/cloud/remote.php/dav/calendars/alice/personal/
The calendar app uses base64(calendar uri) as identifier for calendar objects.
Without this patch the links from activity app to calendar app don't work for installations in a subdirectory.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'apps/dav/lib')
-rw-r--r-- | apps/dav/lib/CalDAV/Activity/Provider/Event.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/Activity/Provider/Event.php b/apps/dav/lib/CalDAV/Activity/Provider/Event.php index 9ae04aadbba..13f0036b0b0 100644 --- a/apps/dav/lib/CalDAV/Activity/Provider/Event.php +++ b/apps/dav/lib/CalDAV/Activity/Provider/Event.php @@ -97,7 +97,7 @@ class Event extends Base { // The calendar app needs to be manually loaded for the routes to be loaded OC_App::loadApp('calendar'); $linkData = $eventData['link']; - $objectId = base64_encode('/remote.php/dav/calendars/' . $linkData['owner'] . '/' . $linkData['calendar_uri'] . '/' . $linkData['object_uri']); + $objectId = base64_encode($this->url->getWebroot() . '/remote.php/dav/calendars/' . $linkData['owner'] . '/' . $linkData['calendar_uri'] . '/' . $linkData['object_uri']); $link = [ 'view' => 'dayGridMonth', 'timeRange' => 'now', |