From d8353ebafa82c888f8f08c40a6d90b4e3ab3ce20 Mon Sep 17 00:00:00 2001 From: Paul Marais <78074945+paulandm@users.noreply.github.com> Date: Thu, 10 Jul 2025 11:12:52 +0200 Subject: [PATCH] Apply OC ical patch --- classes/task/send_ical_notifications.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/classes/task/send_ical_notifications.php b/classes/task/send_ical_notifications.php index 9ad27d0c..1ab5639d 100644 --- a/classes/task/send_ical_notifications.php +++ b/classes/task/send_ical_notifications.php @@ -246,7 +246,8 @@ private function create_ical_object( if ($registrantjoinurl) { $icalevent->add_property('location', $registrantjoinurl); } else { - $icalevent->add_property('location', $zoomurl); + // For OC's purposes we need the join url. + $icalevent->add_property('location', $zoom->join_url); } }