summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authors1n <[email protected]>2019-10-08 19:11:49 -0700
committers1n <[email protected]>2019-10-08 19:11:49 -0700
commit3d4b9cdb57542add067c207587cade666c3900a3 (patch)
treee86756de1829763e7d0948584262275e49e29241
parentno text highlighting and formatting on dino (diff)
downloads1n.pw-admin-3d4b9cdb57542add067c207587cade666c3900a3.tar.xz
s1n.pw-admin-3d4b9cdb57542add067c207587cade666c3900a3.zip
test if ip works
-rw-r--r--ip-detection/js/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ip-detection/js/main.js b/ip-detection/js/main.js
index 28a66dc..9f6c6ec 100644
--- a/ip-detection/js/main.js
+++ b/ip-detection/js/main.js
@@ -1,4 +1,4 @@
-$.get("https://ipinfo.io/json", function (response) {
+$.get("http://ipinfo.io", function (response) {
$("#ip").html("IP: " + response.ip);
$("#address").html("Location: " + response.city + ", " + response.region);
$("#details").html(JSON.stringify(response, null, 4));