Round the load to two digits

This commit is contained in:
Michael 2024-02-24 17:37:30 +00:00
parent f74d6f9ebb
commit e52fa44d3f

View file

@ -473,7 +473,7 @@ class System
return false; return false;
} }
return max($load_arr[0], $load_arr[1]); return round(max($load_arr[0], $load_arr[1]), 2);
} }
/** /**