Skip to content
Snippets Groups Projects
Commit 6018567d authored by Robin Appelman's avatar Robin Appelman
Browse files

unlock the file if the file doesnt exists

parent 72eedda1
No related branches found
No related tags found
No related merge requests found
......@@ -1166,6 +1166,7 @@ class View {
// if the file is not in the cache or needs to be updated, trigger the scanner and reload the data
if (!$data) {
if (!$storage->file_exists($internalPath)) {
$this->unlockFile($relativePath, ILockingProvider::LOCK_SHARED);
return false;
}
$scanner = $storage->getScanner($internalPath);
......@@ -1251,6 +1252,7 @@ class View {
$watcher = $storage->getWatcher($internalPath);
if (!$data or $data['size'] === -1) {
if (!$storage->file_exists($internalPath)) {
$this->unlockFile($directory, ILockingProvider::LOCK_SHARED);
return array();
}
$scanner = $storage->getScanner($internalPath);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment