mirror of https://github.com/ppy/osu
Initial implementation
This commit is contained in:
parent
f15df51514
commit
03d560ed41
|
@ -87,7 +87,12 @@ private void updateDisplay(User user)
|
|||
|
||||
addSpacer(topLinkContainer);
|
||||
|
||||
if (user.LastVisit.HasValue)
|
||||
if (user.IsOnline)
|
||||
{
|
||||
topLinkContainer.AddText("Currently online");
|
||||
addSpacer(topLinkContainer);
|
||||
}
|
||||
else if(user.LastVisit.HasValue)
|
||||
{
|
||||
topLinkContainer.AddText("Last seen ");
|
||||
topLinkContainer.AddText(new DrawableDate(user.LastVisit.Value), embolden);
|
||||
|
|
|
@ -78,6 +78,9 @@ public class UserCover
|
|||
[JsonProperty(@"is_active")]
|
||||
public bool Active;
|
||||
|
||||
[JsonProperty(@"is_online")]
|
||||
public bool IsOnline;
|
||||
|
||||
[JsonProperty(@"pm_friends_only")]
|
||||
public bool PMFriendsOnly;
|
||||
|
||||
|
|
Loading…
Reference in New Issue