1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 06:42:56 +08:00

Merge pull request #17185 from smoogipoo/fix-local-score-linking

Fix avatar not clickable after watching replay
This commit is contained in:
Dean Herbert 2022-03-09 15:39:54 +09:00 committed by GitHub
commit aad9e856b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
}