diff --git a/CHANGELOG.md b/CHANGELOG.md index 7765bb3..39ef7d0 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to `LERN` will be documented in this file. +### 3.7.1 +- Quick fix! The system would seize with no exception + ### 3.7.0 - Added the ability to use a blade template - Blade templates are now the default way to style your exception notification diff --git a/src/Components/Notifier.php b/src/Components/Notifier.php index 5ceac55..29c87c2 100755 --- a/src/Components/Notifier.php +++ b/src/Components/Notifier.php @@ -113,7 +113,7 @@ public function getMessageViaCallback(Exception $e) */ public function getMessageViaView(Exception $e) { - $path = $this->config["view"]; + $path = @$this->config["view"]; if (!empty($path) && View::exists($path)) { return View::make($path, [ "exception" => $e,