diff --git a/app/Http/Middleware/CheckInstalled.php b/app/Http/Middleware/CheckInstalled.php index 01be592c88..e987ac88ab 100644 --- a/app/Http/Middleware/CheckInstalled.php +++ b/app/Http/Middleware/CheckInstalled.php @@ -40,7 +40,6 @@ class CheckInstalled */ public function handle($request, Closure $next) { - config(['app.debug' => true]); $installed = !config('librenms.install') && file_exists(base_path('.env')); $is_install_route = $request->is('install*');