mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
Fix: function usedMemory
While language in console is not English, this function may return `nan`
This commit is contained in:
parent
4299d4d7cc
commit
c0b0d87ff4
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ class Sysinfo
|
|||
|
||||
public function usedMemory()
|
||||
{
|
||||
$used = shell_exec("free -m | awk '/Mem:/ { total=$2 ; used=$3 } END { print used/total*100}'");
|
||||
$used = shell_exec("free -m | awk 'NR==2{ total=$2 ; used=$3 } END { print used/total*100}'");
|
||||
return floor($used);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue