Fix issue causing error reporting to be incorrectly enabled (#14292)

for some reason, the reporting.error.dump merged with reporting.error to store an array instead of a bool.
This commit is contained in:
Tony Murray 2022-09-04 23:05:36 -05:00 committed by GitHub
parent 04b7b1cb03
commit ad9868b8b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ class ErrorReportingProvider extends \Facade\Ignition\IgnitionServiceProvider
public function boot(): void
{
Flare::filterExceptionsUsing(function (\Exception $e) {
if (Config::get('reporting.error.dump')) {
if (Config::get('reporting.dump_errors')) {
dump('Exception: ' . $e->getMessage(), $e->getFile() . ':' . $e->getLine());
}

View File

@ -4857,7 +4857,7 @@
"default": false,
"type": "boolean"
},
"reporting.error.dump": {
"reporting.dump_errors": {
"default": false,
"type": "boolean"
},