From 390fc521e9342778fa74f8f9ae899d21976e3519 Mon Sep 17 00:00:00 2001 From: cdwcgt Date: Wed, 11 Mar 2026 20:06:01 +0800 Subject: [PATCH] Fix avatar sometimes showing as guest in beatmap detail comment container (#36935) - close https://github.com/ppy/osu/issues/34969 The solution here is shown in the issue. I don't think this needs a test... if need I will write one --- osu.Game/Overlays/Comments/CommentsContainer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/Comments/CommentsContainer.cs b/osu.Game/Overlays/Comments/CommentsContainer.cs index 5e277357a9..20b12806ce 100644 --- a/osu.Game/Overlays/Comments/CommentsContainer.cs +++ b/osu.Game/Overlays/Comments/CommentsContainer.cs @@ -188,7 +188,7 @@ namespace osu.Game.Overlays.Comments protected override void LoadComplete() { User.BindValueChanged(_ => refetchComments()); - User.BindValueChanged(e => avatar.User = e.NewValue); + User.BindValueChanged(e => avatar.User = e.NewValue, true); Sort.BindValueChanged(_ => refetchComments(), true); base.LoadComplete(); }