1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 02:22:56 +08:00

Add support for /users/ profile URLs (#5758)

Add support for /users/ profile URLs
This commit is contained in:
Dean Herbert 2019-08-19 10:19:38 +09:00 committed by GitHub
commit 97580a4117
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -122,6 +122,7 @@ namespace osu.Game.Online.Chat
return new LinkDetails(LinkAction.OpenBeatmapSet, args[3]);
case "u":
case "users":
return new LinkDetails(LinkAction.OpenUserProfile, args[3]);
}
}