We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6d5dd4b + 51f0aa5 commit 8dc30e4Copy full SHA for 8dc30e4
1 file changed
apps/dav/lib/Connector/Sabre/Server.php
@@ -86,6 +86,11 @@ private function monitorPropfindQueries(
86
$parentFn($eventName, $callBack, $priority);
87
return;
88
}
89
+ // The \Sabre\DAVACL\Plugin needs to excluded as it relies on removeListener()
90
+ if ($pluginName === \Sabre\DAVACL\Plugin::class) {
91
+ $parentFn($eventName, $callBack, $priority);
92
+ return;
93
+ }
94
95
$callback = $this->getMonitoredCallback($callBack, $pluginName, $eventName);
96
0 commit comments