From 60a8419a1f6472375c28f1c8f727c9f04ecb6b39 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 11 Jun 2014 22:13:27 +0200 Subject: [PATCH] when root storage cannot be mounted throw an exception visible to the end user --- lib/private/files/mount/mount.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/private/files/mount/mount.php b/lib/private/files/mount/mount.php index 04bccbcab87..48c9d88c23c 100644 --- a/lib/private/files/mount/mount.php +++ b/lib/private/files/mount/mount.php @@ -93,7 +93,12 @@ class Mount { try { return $this->loader->load($this->mountPoint, $this->class, $this->arguments); } catch (\Exception $exception) { - \OC_Log::write('core', $exception->getMessage(), \OC_Log::ERROR); + if ($this->mountPoint === '/') { + // the root storage could not be initialized, show the user! + throw new \Exception('The root storage could not be initialized. Please contact your local administrator.', $exception->getCode(), $exception); + } else { + \OC_Log::write('core', $exception->getMessage(), \OC_Log::ERROR); + } return null; } } else { -- 2.39.5