Fix avatar not clickable after watching replay

This commit is contained in:
Dan Balasescu 2022-03-09 14:39:02 +09:00
parent affcf5180b
commit ad0ca5673a

View File

@ -64,7 +64,7 @@ namespace osu.Game.Users.Drawables
private void openProfile()
{
if (user?.Id > 1)
if (user?.Id > 1 || !string.IsNullOrEmpty(user?.Username))
game?.ShowUser(user);
}