Replace try/catch callback w/ simplified JSON parsing

This commit is contained in:
billz 2025-01-25 02:48:52 -08:00
parent 97bc8174b4
commit 77f183817a

View File

@ -117,20 +117,8 @@ function DisplaySystem(&$extraFooterScripts)
$extraFooterScripts[] = array('src'=>'app/js/huebee.js', 'defer'=>false); $extraFooterScripts[] = array('src'=>'app/js/huebee.js', 'defer'=>false);
$logLimit = isset($_SESSION['log_limit']) ? $_SESSION['log_limit'] : RASPI_LOG_SIZE_LIMIT; $logLimit = isset($_SESSION['log_limit']) ? $_SESSION['log_limit'] : RASPI_LOG_SIZE_LIMIT;
try { $plugins = $pluginInstaller->getUserPlugins();
$plugins = callbackTimeout(fn() => $pluginInstaller->getUserPlugins(), 3000); $pluginsTable = $pluginInstaller->getHTMLPluginsTable($plugins);
$pluginsTable = $pluginInstaller->getHTMLPluginsTable($plugins);
} catch (\Exception $e) {
$errResponse = sprintf(
'<div class="mt-3 mb-2"><strong>%s:</strong> %s. <strong>%s</strong> %s.</div>',
_('Network error'),
_('Unable to load plugins'),
_('Reload'),
_('and try again')
);
$errResponse.= '<button type="button" onClick="window.location.reload();" class="btn btn-outline btn-primary"><i class="fas fa-sync-alt"></i> '. _("Reload") .'</a>';
$pluginsTable = $errResponse;
}
echo renderTemplate("system", compact( echo renderTemplate("system", compact(
"arrLocales", "arrLocales",