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{
$totalSize+=self::scanFile($file,$root);
$count++;
if($count>$lastSend+25){
if($eventSource){
$eventSource->send('scanning',array('file'=>$path,'count'=>$count));
}
if($count>$lastSend+25 and $eventSource){
$lastSend=$count;
$eventSource->send('scanning',array('file'=>$path,'count'=>$count));
}
}
}