mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
get the correct metadate from updated folders to put in the cache
This commit is contained in:
parent
e8dd86ce0d
commit
549541215e
1 changed files with 3 additions and 3 deletions
|
|
@ -159,9 +159,9 @@ class OC_FileCache_Update{
|
|||
foreach($cachedContent as $file){
|
||||
$size+=$file['size'];
|
||||
}
|
||||
$mtime=$view->filemtime($path);
|
||||
$ctime=$view->filectime($path);
|
||||
$writable=$view->is_writable($path);
|
||||
$mtime=$view->filemtime($path.'/');
|
||||
$ctime=$view->filectime($path.'/');
|
||||
$writable=$view->is_writable($path.'/');
|
||||
OC_FileCache::put($path,array('size'=>$size,'mtime'=>$mtime,'ctime'=>$ctime,'mimetype'=>$mimetype,'writable'=>$writable));
|
||||
}else{
|
||||
$count=0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue