X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/0830521e60d782963e4e781b92c04eb9627abebe..refs/pull/3039/head:/app/Exceptions/NotifyException.php diff --git a/app/Exceptions/NotifyException.php b/app/Exceptions/NotifyException.php index 78ffde05c..8e748a21d 100644 --- a/app/Exceptions/NotifyException.php +++ b/app/Exceptions/NotifyException.php @@ -1,20 +1,38 @@ -message = $message; $this->redirectLocation = $redirectLocation; parent::__construct(); } + + /** + * Send the response for this type of exception. + * + * {@inheritdoc} + */ + public function toResponse($request) + { + $message = $this->getMessage(); + + if (!empty($message)) { + session()->flash('error', $message); + } + + return redirect($this->redirectLocation); + } }