aboutsummaryrefslogtreecommitdiff
path: root/src/net/brysonsteck/Resurrection
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-06-06 17:19:43 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-06-06 17:19:43 -0600
commit1dade4db82b4828a8480fa379d5fb1765002b2d9 (patch)
tree27a9db288253960c933722191ffdf00f64de5e42 /src/net/brysonsteck/Resurrection
parentab4b6ee6887aef3d6222c150d1ca56f2b55fbe04 (diff)
downloadresurrection-1dade4db82b4828a8480fa379d5fb1765002b2d9.tar
resurrection-1dade4db82b4828a8480fa379d5fb1765002b2d9.tar.gz
resurrection-1dade4db82b4828a8480fa379d5fb1765002b2d9.tar.bz2
added protocol to url
Diffstat (limited to 'src/net/brysonsteck/Resurrection')
-rw-r--r--src/net/brysonsteck/Resurrection/startup/CheckForUpdate.java2
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();