Skip to content

Commit

Permalink
Issue #11 remove directory prefix removal
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Nov 4, 2020
1 parent 5e7ce4b commit f734f88
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/AzureFileAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -552,8 +552,10 @@ protected function normalizeDirectoryProperties(
$pathName,
GetDirectoryPropertiesResult $directoryProperties = null
) {
// The library does not return the path prefixes, so there is no need to remove it.

$properties = [
'path' => $this->removePathPrefix($pathName),
'path' => $pathName, //$this->removePathPrefix($pathName),
'type' => 'dir',
];

Expand Down

0 comments on commit f734f88

Please sign in to comment.