Skip to content

Commit

Permalink
- Quick fix! The system would seize with no exception
Browse files Browse the repository at this point in the history
  • Loading branch information
tylercd100 committed Nov 27, 2016
1 parent 15760b7 commit eec4e9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Notifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit eec4e9c

Please sign in to comment.