Fix updateFolder() in OC_FileCache
This commit is contained in:
parent
41179a1456
commit
aa0c3ddcfe
|
@ -655,7 +655,7 @@ class OC_FileCache{
|
|||
}else{
|
||||
$view=new OC_FilesystemView(($root=='/')?'':$root);
|
||||
}
|
||||
$dh=$view->opendir($path);
|
||||
$dh=$view->opendir($path.'/');
|
||||
if($dh){//check for changed/new files
|
||||
while (($filename = readdir($dh)) !== false) {
|
||||
if($filename != '.' and $filename != '..'){
|
||||
|
|
Loading…
Reference in New Issue