From 141ebd9dbefa980dfb223d145d4c9a9ba9cba928 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Tue, 2 Apr 2019 16:20:05 -0400 Subject: [PATCH] [F] Fix osuskills.tk domain --- .../cc/moecraft/icq/plugins/osubot/osu/OsuSkillsHtmlUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cc/moecraft/icq/plugins/osubot/osu/OsuSkillsHtmlUtils.java b/src/main/java/cc/moecraft/icq/plugins/osubot/osu/OsuSkillsHtmlUtils.java index 2ce7786..3918d1a 100644 --- a/src/main/java/cc/moecraft/icq/plugins/osubot/osu/OsuSkillsHtmlUtils.java +++ b/src/main/java/cc/moecraft/icq/plugins/osubot/osu/OsuSkillsHtmlUtils.java @@ -25,7 +25,7 @@ public static int[] getSkillLevels(String playerName) throws UserNotFoundExcepti { playerName = playerName.replace(" ", "%20"); - String html = HttpUtil.downloadString("http://osuskills.tk/user/" + playerName, "utf-8"); + String html = HttpUtil.downloadString("http://osuskills.com/user/" + playerName, "utf-8"); Matcher matcher = pattern.matcher(html); int[] result = new int[6];