Skip to content

Commit

Permalink
fix: parse base folder .env variable in filesystem
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvantuycom committed Jan 26, 2024
1 parent 6d12940 commit 059a71c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fs/CloudinaryFs.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ protected function createAdapter(): FilesystemAdapter
],
]);

return new CloudinaryAdapter($client, $this->baseFolder, null, $this->dynamicFolders);
return new CloudinaryAdapter($client, App::parseEnv($this->baseFolder), null, $this->dynamicFolders);
}

protected function invalidateCdnPath(string $path): bool
Expand Down

0 comments on commit 059a71c

Please sign in to comment.