mirror of
https://github.com/nextcloud/server.git
synced 2026-03-23 10:54:41 -04:00
Correct deleting events over CalDAV
A quick patch that corrects not being able to delete calendar events. (misnamed variable). Thanks to Robert J. Clark.
This commit is contained in:
parent
d3f6f618e6
commit
9a5530a48f
1 changed files with 1 additions and 1 deletions
|
|
@ -294,7 +294,7 @@ class OC_Connector_Sabre_CalDAV extends Sabre_CalDAV_Backend_Abstract {
|
|||
* @return void
|
||||
*/
|
||||
public function deleteCalendarObject($calendarId,$objectUri){
|
||||
OC_Calendar_Calendar::deleteCalendarObjectFromDAVData($calendarID,$objectUri);
|
||||
OC_Calendar_Calendar::deleteCalendarObjectFromDAVData($calendarId,$objectUri);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue