fix(analytics): remove charts empty values + remove useless language cache

fix(install): edit host_url helper and remove back() when create .env
This commit is contained in:
Benjamin Bellamy 2020-10-19 16:47:22 +00:00
commit 1678794153
8 changed files with 21 additions and 21 deletions

View file

@ -44,7 +44,7 @@ class Install extends Controller
$dotenv->load();
} catch (\Throwable $e) {
return $this->createEnv();
$this->createEnv();
}
// Check if the created .env file is writable to continue install process
@ -139,8 +139,6 @@ class Install extends Controller
// Could not create the .env file, redirect to a view with manual instructions on how to add it
return view('install/manual_config');
}
return redirect()->back();
}
public function instanceConfig()