mirror of
https://github.com/nextcloud/server.git
synced 2026-04-14 05:27:46 -04:00
fix: exclude \Sabre\DAVACL\Plugin from prop find monitoring
Fixes creating events with attendees on the same server. Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
This commit is contained in:
parent
0bc2b34793
commit
51f0aa5be2
1 changed files with 5 additions and 0 deletions
|
|
@ -86,6 +86,11 @@ class Server extends \Sabre\DAV\Server {
|
|||
$parentFn($eventName, $callBack, $priority);
|
||||
return;
|
||||
}
|
||||
// The \Sabre\DAVACL\Plugin needs to excluded as it relies on removeListener()
|
||||
if ($pluginName === \Sabre\DAVACL\Plugin::class) {
|
||||
$parentFn($eventName, $callBack, $priority);
|
||||
return;
|
||||
}
|
||||
|
||||
$callback = $this->getMonitoredCallback($callBack, $pluginName, $eventName);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue