added protocol to url

This commit is contained in:
Bryson Steck 2021-06-06 17:19:43 -06:00
parent ab4b6ee688
commit 1dade4db82
3 changed files with 1 additions and 1 deletions

View file

@ -19,7 +19,7 @@ public class CheckForUpdate {
public CheckForUpdate() {
try {
URL url = new URL("resurrect.brysonsteck.net");
URL url = new URL("http://resurrect.brysonsteck.net");
URLConnection request = url.openConnection();
request.connect();
JsonParser json = new JsonParser();