minor: Remove obsolete `is_active_human`.

This commit is contained in:
Steve Howell 2020-05-09 18:11:18 +00:00 committed by Tim Abbott
parent b746547395
commit c8fd4e01e1
1 changed files with 0 additions and 1 deletions

View File

@ -171,7 +171,6 @@ function populate_users(realm_people_data) {
let deactivated_users = []; let deactivated_users = [];
let bots = []; let bots = [];
for (const user of realm_people_data.members) { for (const user of realm_people_data.members) {
user.is_active_human = user.is_active && !user.is_bot;
if (user.is_bot) { if (user.is_bot) {
bots.push(user); bots.push(user);
} else if (user.is_active) { } else if (user.is_active) {