diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2024-10-30 12:31:38 +0100 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2024-11-22 11:55:24 +0100 |
commit | cb6840fea567d724baa4e3838a6551fa5ae52383 (patch) | |
tree | 27fd13fd9777b258fd5daa3c67d1a7a112f014ef /apps/dav/lib/Connector | |
parent | c9bd0039f1119fc97ee845f964ef2119c8867205 (diff) | |
download | nextcloud-server-cb6840fea567d724baa4e3838a6551fa5ae52383.tar.gz nextcloud-server-cb6840fea567d724baa4e3838a6551fa5ae52383.zip |
Revert "fix: Override start method of \Sabre\DAV\Server to remove exception output"
This reverts commit e202896a7476f6c3ad74793e6524293fd8a93224.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'apps/dav/lib/Connector')
-rw-r--r-- | apps/dav/lib/Connector/Sabre/Server.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/apps/dav/lib/Connector/Sabre/Server.php b/apps/dav/lib/Connector/Sabre/Server.php index 610c79d5661..b7ca8a0a1c0 100644 --- a/apps/dav/lib/Connector/Sabre/Server.php +++ b/apps/dav/lib/Connector/Sabre/Server.php @@ -25,27 +25,4 @@ 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) { - } - } - } } |