Fix install not triggering

This commit is contained in:
Jay Trees 2022-01-14 14:15:23 +01:00
parent 3c55219c7e
commit 56c61bc219

View file

@ -8,7 +8,7 @@
use wishthis\{Page, Database};
if ($options->getOption('isInstalled')) {
if ($options && $options->getOption('isInstalled')) {
header('Location: /?page=login');
die();
}