diff options
author | Frankie <git@diskfloppy.me> | 2023-12-31 02:06:10 +0000 |
---|---|---|
committer | Frankie <git@diskfloppy.me> | 2023-12-31 02:06:18 +0000 |
commit | 398fb1a1b314fb44339f70dece4fe6a613069c2b (patch) | |
tree | 62b6ae2c3ec24eab3dca8a10e2de09aa043645c4 /app/Exceptions | |
parent | 5bbe4ed4b52fbd6b147aa3aa96636b5d8d64db85 (diff) |
Add sentry, update dirlist.css
Diffstat (limited to 'app/Exceptions')
-rw-r--r-- | app/Exceptions/Handler.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 56af264..26fbddf 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -24,7 +24,9 @@ class Handler extends ExceptionHandler public function register(): void { $this->reportable(function (Throwable $e) { - // + if (app()->bound('sentry')) { + app('sentry')->captureException($e); + } }); } } |