mirror of
https://github.com/nextcloud/server.git
synced 2026-05-15 01:49:53 -04:00
fix: Override start method of \Sabre\DAV\Server to remove exception output
Signed-off-by: Louis Chemineau <louis@chmn.me>
This commit is contained in:
parent
511ceceff6
commit
b9bac21b58
1 changed files with 23 additions and 0 deletions
|
|
@ -43,4 +43,27 @@ class Server extends \Sabre\DAV\Server {
|
|||
self::$exposeVersion = false;
|
||||
$this->enablePropfindDepthInfinity = true;
|
||||
}
|
||||
|
||||
// Copied from 3rdparty/sabre/dav/lib/DAV/Server.php
|
||||
// Should be them exact same without the exception output.
|
||||
public function start(): void {
|
||||
try {
|
||||
// If nginx (pre-1.2) is used as a proxy server, and SabreDAV as an
|
||||
// origin, we must make sure we send back HTTP/1.0 if this was
|
||||
// requested.
|
||||
// This is mainly because nginx doesn't support Chunked Transfer
|
||||
// Encoding, and this forces the webserver SabreDAV is running on,
|
||||
// to buffer entire responses to calculate Content-Length.
|
||||
$this->httpResponse->setHTTPVersion($this->httpRequest->getHTTPVersion());
|
||||
|
||||
// Setting the base url
|
||||
$this->httpRequest->setBaseUrl($this->getBaseUri());
|
||||
$this->invokeMethod($this->httpRequest, $this->httpResponse);
|
||||
} catch (\Throwable $e) {
|
||||
try {
|
||||
$this->emit('exception', [$e]);
|
||||
} catch (\Exception $ignore) {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue