1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-05 19:44:44 +08:00

Merge pull request #21983 from peppy/fix-recent-activity-linking

Fix incorrect domain root being used for recent activity entries on profile overlay
This commit is contained in:
Bartłomiej Dach
2023-01-01 11:22:26 +01:00
committed by GitHub
Unverified
@@ -224,7 +224,7 @@ namespace osu.Game.Overlays.Profile.Sections.Recent
private void addBeatmapsetLink()
=> content.AddLink(activity.Beatmapset?.Title, LinkAction.OpenBeatmapSet, getLinkArgument(activity.Beatmapset?.Url), creationParameters: t => t.Font = getLinkFont());
private string getLinkArgument(string url) => MessageFormatter.GetLinkDetails($"{api.APIEndpointUrl}{url}").Argument.ToString();
private string getLinkArgument(string url) => MessageFormatter.GetLinkDetails($"{api.WebsiteRootUrl}{url}").Argument.ToString();
private FontUsage getLinkFont(FontWeight fontWeight = FontWeight.Regular)
=> OsuFont.GetFont(size: font_size, weight: fontWeight, italics: true);