Wrap the etag in double quotes

This commit is contained in:
Michael Gapczynski 2013-01-11 21:09:58 -05:00
parent b30648cb7d
commit 094a852bff
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}