summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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));