summaryrefslogtreecommitdiffstats
path: root/files/ajax/scan.php
diff options
context:
space:
mode:
Diffstat (limited to 'files/ajax/scan.php')
-rw-r--r--files/ajax/scan.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/files/ajax/scan.php b/files/ajax/scan.php
index f7e75d5f8ba..565275911b4 100644
--- a/files/ajax/scan.php
+++ b/files/ajax/scan.php
@@ -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{