1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-01 23:00:50 +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
Unverified
+1 -1
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);
}