1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 09:02:58 +08:00
This commit is contained in:
cdwcgt 2023-04-03 19:51:22 +09:00
parent d949ef3ca4
commit 51240ed46b
No known key found for this signature in database
GPG Key ID: 144396D01095C3A2

View File

@ -212,13 +212,13 @@ namespace osu.Game.Overlays.BeatmapSet
if (beatmapInfo != null && beatmapSet?.Author.OnlineID != beatmapInfo.AuthorID)
{
if (BeatmapSet?.RelatedUsers?.Single(u => u.OnlineID == beatmapInfo.AuthorID) is APIUser user)
guestMapperContainer.Child = getGueatMapper(user);
guestMapperContainer.Child = getGuestMapper(user);
}
version.Text = beatmapInfo?.DifficultyName ?? string.Empty;
}
private Drawable getGueatMapper(APIUser user)
private Drawable getGuestMapper(APIUser user)
{
return new LinkFlowContainer(s =>
{