dont send to much when scanning large folders

This commit is contained in:
Robin Appelman 2012-03-31 16:28:22 +02:00
parent 9d2f8aa717
commit ebc7a6a0a6
1 changed files with 3 additions and 4 deletions

View File

@ -490,10 +490,9 @@ class OC_FileCache{
}else{ }else{
$totalSize+=self::scanFile($file,$root); $totalSize+=self::scanFile($file,$root);
$count++; $count++;
if($count>$lastSend+25){ if($count>$lastSend+25 and $eventSource){
if($eventSource){ $lastSend=$count;
$eventSource->send('scanning',array('file'=>$path,'count'=>$count)); $eventSource->send('scanning',array('file'=>$path,'count'=>$count));
}
} }
} }
} }