using last base image to fix issue with javascript workers

This commit is contained in:
Fernando Ontiveros
2025-07-10 07:31:26 -04:00
parent 90d9515075
commit b0c0d8d70c
2 changed files with 2 additions and 3 deletions

View File

@@ -62,7 +62,7 @@ try {
$view = new PhtmlView($rootDir . "framework/src/templates/error.phtml");
$view->set("title", "Installation Required");
$view->set("message", "Please run lurana-installer to use the software. \n\nIf you've already run it, there might be an issue. \nPlease contact support.");
$view->set("exception", $e);
$view->set("exception", $e);
$response = new Response($view->getOutput(), 403);
$response->send();
} catch (Exception $e) {