Skip to content

Commit

Permalink
away: Use correct user circle in user group popup.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Steve Howell authored and showell committed Feb 17, 2019
1 parent 8de84ee commit 57aabc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/popovers.js
Original file line number Diff line number Diff line change
Expand Up @@ -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),
});
Expand Down

0 comments on commit 57aabc2

Please sign in to comment.