updated 'activeusers' command to only list users listed as 'Active' rather then 'Active' or 'Connected'

This commit is contained in:
Bryan Roe 2019-12-12 14:50:41 -08:00
parent 09190fbc86
commit 3136e33558
1 changed files with 1 additions and 1 deletions

View File

@ -1982,7 +1982,7 @@ function createMeshCore(agent) {
var v = []; var v = [];
for(var i in u) for(var i in u)
{ {
if(u[i].State == 'Active' || u[i].State == 'Connected') if(u[i].State == 'Active')
{ {
v.push({ tsid: i, type: u[i].StationName, user: u[i].Username }); v.push({ tsid: i, type: u[i].StationName, user: u[i].Username });
} }