diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-04-01 17:12:28 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-04-22 11:34:14 +0200 |
commit | a2cc658f376aaf26a9cec63197722660129ba4d6 (patch) | |
tree | ebe36e83aec1f30ab88072b480f5082299e3b3ea /lib/private/hook.php | |
parent | f830150acc3d4788805377f0c6fcdce9f024148b (diff) | |
download | nextcloud-server-a2cc658f376aaf26a9cec63197722660129ba4d6.tar.gz nextcloud-server-a2cc658f376aaf26a9cec63197722660129ba4d6.zip |
throw exception if setup is incomplete
Diffstat (limited to 'lib/private/hook.php')
-rw-r--r-- | lib/private/hook.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/hook.php b/lib/private/hook.php index c9ca58f779e..7c7128646a9 100644 --- a/lib/private/hook.php +++ b/lib/private/hook.php @@ -80,6 +80,9 @@ class OC_Hook{ OC_Log::write('hook', 'error while running hook (' . $i["class"] . '::' . $i["name"] . '): '.$e->getMessage(), OC_Log::ERROR); + if($e instanceof \OC\ServerNotAvailableException && $signalclass === 'OC_Filesystem' && $signalname === 'setup') { + throw $e; + } } } |