From: Zane C. Bowers-Hadley Date: Sat, 3 Dec 2022 10:31:04 +0000 (-0600) Subject: derp, minor fix X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=edaff99307347991a5b0f198cb3643daf5e6682f;p=friendica.git derp, minor fix --- diff --git a/src/Core/System.php b/src/Core/System.php index dbf49b38db..31f17a9058 100644 --- a/src/Core/System.php +++ b/src/Core/System.php @@ -445,7 +445,7 @@ class System if (@is_readable('/proc/loadavg')) { $content = @file_get_contents('/proc/loadavg'); if (empty($content)) { - $content = shell_exec('uptime | sed "s/.*e: //" | sed "s/,//"'); + $content = shell_exec('uptime | sed "s/.*averages*: //" | sed "s/,//"'); } }