mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
Fix updateFolder() in OC_FileCache
This commit is contained in:
parent
41179a1456
commit
aa0c3ddcfe
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue