Skip to content
Snippets Groups Projects
Commit 7d39f060 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Cosmetic fix: user totals displayed were wrong when not sorting the list

parent 4db7b6f8
Branches
No related tags found
No related merge requests found
Pipeline #9037 passed
......@@ -55,7 +55,6 @@ for(var i = 1; i <= lastuser; i++) {
continue;
break;
}
if(sort)
list.push( { number: u.number
, alias: u.alias
, location: u.location
......@@ -63,7 +62,7 @@ for(var i = 1; i <= lastuser; i++) {
, connection: u.connection
, stats: { laston_date: u.stats.laston_date }
});
else
if(!sort)
print_user(u);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment