1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 01:43:15 +08:00

Removed "wiki:" prefix from wiki links (links are visible on tooltips so this is unnecessary now)

This commit is contained in:
FreezyLemon 2017-12-07 11:23:31 +01:00
parent 8a88040ef5
commit f4f1291919

View File

@ -111,7 +111,7 @@ namespace osu.Game.Online.Chat
handleMatches(oldLinkRegex, "{1}", "{2}", result, startIndex);
// handle wiki links
handleMatches(wikiRegex, "wiki:{1}", "https://osu.ppy.sh/wiki/{1}", result, startIndex);
handleMatches(wikiRegex, "{1}", "https://osu.ppy.sh/wiki/{1}", result, startIndex);
// handle bare links
handleAdvanced(advancedLinkRegex, result, startIndex);