From b82e51b38e91ee6fd320473cb7289a50a33d5f1d Mon Sep 17 00:00:00 2001 From: flashwave Date: Sun, 16 Sep 2018 01:28:42 +0200 Subject: [PATCH] whoops --- src/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application.php b/src/Application.php index ebf30ba7..0b54c8ac 100644 --- a/src/Application.php +++ b/src/Application.php @@ -153,7 +153,7 @@ class Application extends ApplicationBase if (array_key_exists('Storage', $this->config)) { try { - return new Directory($this->config['Storage'][$override_key]); + return new Directory($this->config['Storage'][$override_key] ?? ''); } catch (DirectoryDoesNotExistException $ex) { // fall through and just get the default path. }