properly quote etags

This commit is contained in:
Robin Appelman 2014-04-24 11:10:46 +02:00
parent 49b44e7e22
commit cd0c5990f8
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D
* @return mixed
*/
public function getETag() {
return $this->info->getEtag();
return '"' . $this->info->getEtag() . '"';
}
/**