Fix storage override key.
This commit is contained in:
parent
073389c964
commit
ee04c88713
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ class Application extends ApplicationBase
|
|||
|
||||
public function getStore(string $purpose): Directory
|
||||
{
|
||||
$override_key = "override_{$purpose}";
|
||||
$override_key = 'override_' . str_replace('/', '_', $purpose);
|
||||
|
||||
if ($this->config->contains('Storage', $override_key)) {
|
||||
return new Directory($this->config->get('Storage', $override_key));
|
||||
|
|
Loading…
Add table
Reference in a new issue