some improvements in file scanning

This commit is contained in:
Robin Appelman 2012-02-05 01:23:04 +01:00
parent 36bc1a2102
commit 7c00aedc37
1 changed files with 7 additions and 1 deletions

View File

@ -15,13 +15,19 @@ if(!$checkOnly){
//create the file cache if necesary
if($force or !OC_FileCache::inCache('')){
if(!$checkOnly){
OC_FileCache::scan('',false,$eventSource);
OC_DB::beginTransaction();
OC_FileCache::scan('',$eventSource);
OC_DB::commit();
$eventSource->send('success',true);
}else{
OC_JSON::success(array('data'=>array('done'=>true)));
exit;
}
}else{
if($checkOnly){
OC_JSON::success(array('data'=>array('done'=>false)));
exit;
}
if(isset($eventSource)){
$eventSource->send('success',false);
}else{