increased web timeout

This commit is contained in:
Devaev Maxim
2019-06-06 04:04:42 +03:00
parent 288fb05ea5
commit 0f4b990eae
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ var tools = new function() {
http.setRequestHeader("Content-Type", content_type);
}
http.onreadystatechange = callback;
http.timeout = 5000;
http.timeout = 15000;
http.send(body);
return http;
};