away: Use correct user circle in user group popup.

When you click on a user group mention, you see
the list of people with green/orange/empty circles
next to them.  We now correctly reflect away status.
This commit is contained in:
Steve Howell
2019-02-17 14:42:12 +00:00
committed by showell
parent 8de84eea4c
commit 57aabc2a24

View File

@@ -331,7 +331,7 @@ function fetch_group_members(member_ids) {
})
.map(function (p) {
return Object.assign({}, p, {
presence_status: presence.get_status(p.user_id),
presence_status: buddy_data.buddy_status(p.user_id),
is_active: people.is_active_user_for_popover(p.user_id),
user_last_seen_time_status: user_last_seen_time_status(p.user_id),
});