fix(storage): Fix DAV storage as false is never returned

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2024-04-22 15:05:49 +02:00
parent 3217e08d10
commit 7cfe36e49b
No known key found for this signature in database
GPG Key ID: 74434EFE0D2E2205
1 changed files with 0 additions and 6 deletions

View File

@ -470,9 +470,6 @@ class DAV extends Common {
$this->client->proppatch($this->encodePath($path), ['{DAV:}lastmodified' => $mtime]);
// non-owncloud clients might not have accepted the property, need to recheck it
$response = $this->client->propfind($this->encodePath($path), ['{DAV:}getlastmodified'], 0);
if ($response === false) {
return false;
}
if (isset($response['{DAV:}getlastmodified'])) {
$remoteMtime = strtotime($response['{DAV:}getlastmodified']);
if ($remoteMtime !== $mtime) {
@ -911,9 +908,6 @@ class DAV extends Common {
self::PROPFIND_PROPS,
1
);
if ($responses === false) {
return;
}
array_shift($responses); //the first entry is the current directory
if (!$this->statCache->hasKey($directory)) {