mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
some improvements in file scanning
This commit is contained in:
parent
36bc1a2102
commit
7c00aedc37
1 changed files with 7 additions and 1 deletions
|
|
@ -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{
|
||||
|
|
|
|||
Loading…
Reference in a new issue