return success when deleting ghost files

This commit is contained in:
Robin Appelman 2016-06-03 13:34:54 +02:00
parent 63408fa6ef
commit 14f96f86e7
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;
}
/**