You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The node might not have ACLs implemented. In that case this calls a method that doesn't exist.
In my case it's an \Sabre\CalDAV\ICalendarObject that gets deleted. Those often have ACLs, but not always. It might make sense to exit early when IACL is not implemented by the node.
Moreover a null owner will lead to a type issue.
The text was updated successfully, but these errors were encountered:
Due to a bug in Sabre it's necessary for calendar objects to implement
ACLs. Otherwise the scheduling plugin will throw an error when it tries
to fetch the owner of a calendar object that is being deleted.
Ref sabre-io/dav#1345
Signed-off-by: Christoph Wurst <[email protected]>
Due to a bug in Sabre it's necessary for calendar objects to implement
ACLs. Otherwise the scheduling plugin will throw an error when it tries
to fetch the owner of a calendar object that is being deleted.
Ref sabre-io/dav#1345
Signed-off-by: Christoph Wurst <[email protected]>
dav/lib/CalDAV/Schedule/Plugin.php
Line 389 in c1afdc7
The node might not have ACLs implemented. In that case this calls a method that doesn't exist.
In my case it's an
\Sabre\CalDAV\ICalendarObject
that gets deleted. Those often have ACLs, but not always. It might make sense to exit early when IACL is not implemented by the node.Moreover a
null
owner will lead to a type issue.The text was updated successfully, but these errors were encountered: