Fix hostname timeouts

This commit is contained in:
Laura Hausmann 2021-06-11 14:14:33 +02:00
parent 8e402773b4
commit f891bd69fa
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -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);