From 1dade4db82b4828a8480fa379d5fb1765002b2d9 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Sun, 6 Jun 2021 17:19:43 -0600 Subject: added protocol to url --- src/net/brysonsteck/Resurrection/startup/CheckForUpdate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/net/brysonsteck') diff --git a/src/net/brysonsteck/Resurrection/startup/CheckForUpdate.java b/src/net/brysonsteck/Resurrection/startup/CheckForUpdate.java index 30e1cb1..8a13780 100644 --- a/src/net/brysonsteck/Resurrection/startup/CheckForUpdate.java +++ b/src/net/brysonsteck/Resurrection/startup/CheckForUpdate.java @@ -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(); -- cgit v1.2.3