Handle links correctly and don't re-open profile if the user is same.

This commit is contained in:
naoey
2018-02-26 00:58:20 +05:30
parent bb40919f9c
commit 75fdca928e
3 changed files with 9 additions and 6 deletions

View File

@ -75,6 +75,9 @@ namespace osu.Game.Overlays
public void ShowUser(long userId)
{
if (userId == Header.User.Id)
return;
ShowUser(new User { Id = userId }, true);
}