1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-16 07:32:34 +08:00

Compare commits

...

2 Commits

2 changed files with 8 additions and 5 deletions
+7 -4
View File
@@ -386,10 +386,13 @@ namespace osu.Game.Overlays.Profile
infoTextLeft.AddText(new DrawableJoinDate(user.JoinDate), boldItalic);
}
infoTextLeft.NewLine();
infoTextLeft.AddText("Last seen ", lightText);
infoTextLeft.AddText(new DrawableDate(user.LastVisit), boldItalic);
infoTextLeft.NewParagraph();
if (user.LastVisit.HasValue)
{
infoTextLeft.NewLine();
infoTextLeft.AddText("Last seen ", lightText);
infoTextLeft.AddText(new DrawableDate(user.LastVisit.Value), boldItalic);
infoTextLeft.NewParagraph();
}
if (user.PlayStyle?.Length > 0)
{
+1 -1
View File
@@ -84,7 +84,7 @@ namespace osu.Game.Users
public string Location;
[JsonProperty(@"last_visit")]
public DateTimeOffset LastVisit;
public DateTimeOffset? LastVisit;
[JsonProperty(@"twitter")]
public string Twitter;