mirror of
https://github.com/nextcloud/server.git
synced 2026-03-24 11:24:37 -04:00
fix(dav): Fix share token pattern for base uri extraction
Signed-off-by: provokateurin <kate@provokateurin.de>
This commit is contained in:
parent
78b31ca00f
commit
81acb210ce
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ $filesDropPlugin = new FilesDropPlugin();
|
|||
|
||||
// Define root url with /public.php/dav/files/TOKEN
|
||||
/** @var string $baseuri defined in public.php */
|
||||
preg_match('/(^files\/\w+)/i', substr($requestUri, strlen($baseuri)), $match);
|
||||
preg_match('/(^files\/[a-z0-9-]+)/i', substr($requestUri, strlen($baseuri)), $match);
|
||||
$baseuri = $baseuri . $match[0];
|
||||
|
||||
$server = $serverFactory->createServer($baseuri, $requestUri, $authPlugin, function (\Sabre\DAV\Server $server) use ($authBackend, $linkCheckPlugin, $filesDropPlugin) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue