1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-27 03:32:56 +08:00

Fix handling badly-formatted osu:// urls

This commit is contained in:
Susko3 2022-02-23 00:36:56 +01:00
parent d0d0830888
commit 7bdcb5952e

View File

@ -236,8 +236,7 @@ namespace osu.Game.Online.Chat
break;
default:
linkType = LinkAction.External;
break;
return new LinkDetails(LinkAction.External, url);
}
return new LinkDetails(linkType, args[2]);