Skip to content

Commit

Permalink
fix(files): Never return a null ETag in DAV
Browse files Browse the repository at this point in the history
Signed-off-by: provokateurin <kate@provokateurin.de>
  • Loading branch information
provokateurin committed Sep 9, 2024
1 parent a2cfcf3 commit a00bb0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Files/Storage/DAV.php
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ public function getPermissions($path) {
/** {@inheritdoc} */
public function getETag($path) {
$meta = $this->getMetaData($path);
return $meta ? $meta['etag'] : null;
return $meta ? $meta['etag'] : parent::getETag($path);
}

/**
Expand Down

0 comments on commit a00bb0e

Please sign in to comment.