diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-06-06 17:19:43 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-06-06 17:19:43 -0600 |
commit | 1dade4db82b4828a8480fa379d5fb1765002b2d9 (patch) | |
tree | 27a9db288253960c933722191ffdf00f64de5e42 /src | |
parent | ab4b6ee6887aef3d6222c150d1ca56f2b55fbe04 (diff) | |
download | resurrection-1dade4db82b4828a8480fa379d5fb1765002b2d9.tar resurrection-1dade4db82b4828a8480fa379d5fb1765002b2d9.tar.gz resurrection-1dade4db82b4828a8480fa379d5fb1765002b2d9.tar.bz2 |
added protocol to url
Diffstat (limited to 'src')
-rw-r--r-- | src/net/brysonsteck/Resurrection/startup/CheckForUpdate.java | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |