From eb9c65d7658080edc11ce60733f43a783ac72876 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 8 Jun 2023 08:26:22 +0200 Subject: [PATCH] fix --- app/Exceptions/Handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index b6839a915..761267dd4 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -47,7 +47,7 @@ public function register(): void { $this->reportable(function (Throwable $e) { $this->settings = InstanceSettings::get(); - if ($this->settings->do_no_track) { + if ($this->settings->do_not_track) { return; } Integration::captureUnhandledException($e);