From 33f1b91d55dd0652c979d50fc85879dbf88a4a42 Mon Sep 17 00:00:00 2001 From: Yassine Doghri <yassine@doghri.fr> Date: Thu, 10 Jun 2021 14:13:36 +0000 Subject: [PATCH] fix: update condition in home controller to redirect to install page --- app/Controllers/HomeController.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/Controllers/HomeController.php b/app/Controllers/HomeController.php index 7031b741ae..a2d4f87296 100644 --- a/app/Controllers/HomeController.php +++ b/app/Controllers/HomeController.php @@ -18,10 +18,9 @@ class HomeController extends BaseController { public function index(): RedirectResponse | string { - $connections = \CodeIgniter\Database\Config::getConnections(); $db = db_connect(); - if ($connections === [] || ! $db->tableExists('podcasts')) { - // Cannot connect to the database or cannot find the podcasts table + if ($db->getDatabase() === '' || ! $db->tableExists('podcasts')) { + // Database connection has not been set or could not find the podcasts table // Redirecting to install page because it is likely that Castopod Host has not been installed yet. // NB: as base_url wouldn't have been defined here, redirect to install wizard manually $route = Services::routes()->reverseRoute('install'); -- GitLab