also scan new folders when checking for updates

it might cause long load times but seems the best for now
This commit is contained in:
Robin Appelman 2012-05-09 20:35:12 +02:00
parent 14b240a3f4
commit 03f66c6351
1 changed files with 1 additions and 1 deletions

View File

@ -640,7 +640,7 @@ class OC_FileCache{
$cachedMTime=$row['mtime'];
return ($mtime>$cachedMTime);
}else{//file not in cache, so it has to be updated
return !($isDir);//new folders are handeled sperate
return true;
}
}