mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Do not process undefined items
This commit is contained in:
parent
97746f83c8
commit
876bb30f50
@ -14,6 +14,9 @@ function stats(x) {
|
||||
|
||||
var values = x.split("|");
|
||||
|
||||
if(values[0] == 'undefined')
|
||||
return;
|
||||
|
||||
updateCPU(values[0]);
|
||||
updateMemory(values[1]);
|
||||
updateUptime(values[2]);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user