mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2025-02-11 19:50:30 +00:00
Fixed update checking using http instead of https
This commit is contained in:
parent
819487743c
commit
758f24108b
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ public class UpdateChecker {
|
||||||
*/
|
*/
|
||||||
private String getSpigotVersion() {
|
private String getSpigotVersion() {
|
||||||
try {
|
try {
|
||||||
HttpURLConnection con = (HttpURLConnection) new URL("http://www.spigotmc.org/api/general.php").openConnection();
|
HttpURLConnection con = (HttpURLConnection) new URL("https://www.spigotmc.org/api/general.php").openConnection();
|
||||||
con.setDoOutput(true);
|
con.setDoOutput(true);
|
||||||
con.setRequestMethod("POST");
|
con.setRequestMethod("POST");
|
||||||
con.getOutputStream().write(
|
con.getOutputStream().write(
|
||||||
|
|
Loading…
Reference in a new issue