diff --git a/src/js/connectivity.js b/src/js/connectivity.js index ec3cce7..bcf0f9f 100644 --- a/src/js/connectivity.js +++ b/src/js/connectivity.js @@ -24,7 +24,7 @@ function test_ipv4() { $.ajax({ url: "https://v4.ip6.biz/hostname.php", dataType: "json", - timeout: 2000, + timeout: 5000, success: function(resp) { if (resp.status == "ok") { $p.find(".proto_hostname").html(resp.response); @@ -91,7 +91,7 @@ function test_ipv6() { $.ajax({ url: "https://v6.ip6.biz/hostname.php", dataType: "json", - timeout: 2000, + timeout: 5000, success: function(resp) { if (resp.status == "ok") { $p.find(".proto_hostname").html(resp.response);