fix: correct dead ternary in check.php filesystem status logic

Agent-Logs-Url: https://github.com/GameServerPanel/GSP/sessions/73ed1a44-9f9b-44d6-995a-706993bdef21

Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-05-02 00:31:23 +00:00 committed by GitHub
parent 2303175e56
commit 6ddc84700f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -156,7 +156,7 @@ foreach ($paths_to_check as $rel => $meta) {
$parent_writable = is_writable(dirname($abs));
$not_exist_status = $parent_writable ? 'warning' : 'error';
} else {
$not_exist_status = $optional ? 'warning' : 'warning';
$not_exist_status = $optional ? 'warning' : 'missing';
}
$rows[] = [
'section' => 'Filesystem',