X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/a6633642232efd164d4708967ab59e498fbff896..refs/pull/3008/head:/app/Exceptions/NotifyException.php diff --git a/app/Exceptions/NotifyException.php b/app/Exceptions/NotifyException.php index 4f8105960..ef9a44101 100644 --- a/app/Exceptions/NotifyException.php +++ b/app/Exceptions/NotifyException.php @@ -1,18 +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); + } }