mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-11-04 08:59:47 +01:00
Fixed update checking using http instead of https
This commit is contained in:
parent
819487743c
commit
758f24108b
@ -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 New Issue
Block a user