Merge pull request #13936 from annando/rounding

Round the load to two digits
This commit is contained in:
Tobias Diekershoff 2024-02-24 18:56:11 +01:00 committed by GitHub
commit 35bba685fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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