return success when deleting ghost files

This commit is contained in:
Robin Appelman 2016-06-03 13:34:54 +02:00 committed by Arthur Schiwon
parent 67c2c85b05
commit f4831f4074
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
1 changed files with 3 additions and 1 deletions

View File

@ -691,8 +691,10 @@ class View {
$storage = $mount->getStorage();
$internalPath = $mount->getInternalPath($absolutePath);
$storage->getUpdater()->remove($internalPath);
return true;
} else {
return $result;
}
return $result;
}
/**