|
|
|
|
@ -1338,9 +1338,6 @@ class View { |
|
|
|
|
if (!Filesystem::isValidPath($path)) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
if (Cache\Scanner::isPartialFile($path)) { |
|
|
|
|
return $this->getPartFileInfo($path); |
|
|
|
|
} |
|
|
|
|
$relativePath = $path; |
|
|
|
|
$path = Filesystem::normalizePath($this->fakeRoot . '/' . $path); |
|
|
|
|
|
|
|
|
|
@ -1351,6 +1348,10 @@ class View { |
|
|
|
|
$data = $this->getCacheEntry($storage, $internalPath, $relativePath); |
|
|
|
|
|
|
|
|
|
if (!$data instanceof ICacheEntry) { |
|
|
|
|
if (Cache\Scanner::isPartialFile($relativePath)) { |
|
|
|
|
return $this->getPartFileInfo($relativePath); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|