use db transitions for collection scanner

This commit is contained in:
Robin Appelman 2011-07-31 20:25:13 +02:00
parent 14f7daf53c
commit 6e2ce76223
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,7 @@ class OC_MEDIA_SCANNER{
* @return int the number of songs found
*/
public static function scanFolder($path){
OC_DB::beginTransaction();
if (OC_Filesystem::is_dir($path)) {
$songs=0;
if ($dh = OC_Filesystem::opendir($path)) {
@ -59,6 +60,7 @@ class OC_MEDIA_SCANNER{
}else{
$songs=0;
}
OC_DB::commit();
return $songs;
}