From: Robin Appelman Date: Wed, 9 May 2012 18:35:12 +0000 (+0200) Subject: also scan new folders when checking for updates X-Git-Tag: v4.0.0RC~83 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=03f66c6351471319fa0a06b8a8bbd7bfe82ed5c2;p=nextcloud-server.git also scan new folders when checking for updates it might cause long load times but seems the best for now --- diff --git a/lib/filecache.php b/lib/filecache.php index 8763865c8c3..9fa3fbea97d 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -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; } }