From 6c78be8d0be96d50b564e5cbda2a9ea65ff3410e Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Tue, 1 Aug 2023 17:26:56 +0200 Subject: [PATCH] Fix checkForUpdate setting not being displayed - Closes #213 --- app/Http/Controllers/SystemController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/SystemController.php b/app/Http/Controllers/SystemController.php index feaab658..9b921843 100644 --- a/app/Http/Controllers/SystemController.php +++ b/app/Http/Controllers/SystemController.php @@ -48,7 +48,7 @@ public function infos(Request $request) if ($request->user()->is_admin == true) { $infos['admin_settings']['useEncryption'] = Settings::get('useEncryption'); $infos['admin_settings']['lastRadarScan'] = Carbon::parse(Settings::get('lastRadarScan'))->format('Y-m-d H:i:s'); - $infos['admin_settings']['checkForUpdate'] = Settings::get('CheckForUpdate'); + $infos['admin_settings']['checkForUpdate'] = Settings::get('checkForUpdate'); } } // User info