Skip to content

Commit

Permalink
Fix typo in updater checker URL (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aurelien30000 committed Jul 18, 2023
1 parent 6040264 commit e94dc1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ private double updateCheck(double currentVersion) {
((String) ((JSONObject) array.get(array.size() - 1)).get("name")).replace("FastAsyncVoxelSniper", "").trim();
return Double.parseDouble(newVersionTitle.replaceFirst("\\.", "").trim());
} catch (IOException ignored) {
LOGGER.error("Unable to connect to dev.bukkit.org to check for updates. Improper firewall configuration?");
LOGGER.error("Unable to connect to api.curseforge.com to check for updates. Improper firewall configuration?");
}
return Double.NaN;
}
Expand Down

0 comments on commit e94dc1d

Please sign in to comment.