Don't use more entropy for etags

This commit is contained in:
Michael Gapczynski 2013-01-11 20:56:36 -05:00
parent 6801f82d09
commit 8a63bcc1e8
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ abstract class Common implements \OC\Files\Storage\Storage {
$hash = call_user_func($ETagFunction, $path);
return $hash;
}else{
return uniqid('', true);
return uniqid();
}
}
}