Fix for update showing available when one isn't #707

This commit is contained in:
Nabeel Shahzad
2020-05-21 11:06:27 -04:00
parent 52379c3789
commit 975ee9b88e
4 changed files with 20 additions and 10 deletions

View File

@@ -36,7 +36,7 @@ class MaintenanceController extends Controller
return view('admin.maintenance.index', [
'cron_path' => $this->cronSvc->getCronExecString(),
'cron_problem_exists' => $this->cronSvc->cronProblemExists(),
'new_version' => true, //$this->kvpRepo->get('new_version_available', false),
'new_version' => $this->kvpRepo->get('new_version_available', false),
'new_version_tag' => $this->kvpRepo->get('latest_version_tag'),
]);
}