Wrap the etag in double quotes

remotes/origin/stable5
Michael Gapczynski 12 years ago
parent b30648cb7d
commit 094a852bff
  1. 2
      lib/connector/sabre/node.php

@ -213,7 +213,7 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr
static public function getETagPropertyForPath($path) {
$data = \OC\Files\Filesystem::getFileInfo($path);
if (isset($data['etag'])) {
return $data['etag'];
return '"'.$data['etag'].'"';
}
return null;
}

Loading…
Cancel
Save