From 690a51b4503c2e1370caebdda11bd441ddd7e7f2 Mon Sep 17 00:00:00 2001 From: Jon Ziebell Date: Thu, 17 Nov 2022 19:38:28 -0500 Subject: [PATCH] Fixed #372 - Resist profile sometimes doesn't show up --- api/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/index.php b/api/index.php index 6997a41..c063c0b 100644 --- a/api/index.php +++ b/api/index.php @@ -90,7 +90,7 @@ function array_standard_deviation($array) { $variance += pow(($i - $mean), 2); } - return round(sqrt($variance / $count), 1); + return round(sqrt($variance / $count), 2); } /**