From 74e3e890c7919ee686142f9af824787339d6edc3 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Fri, 1 Apr 2022 15:45:02 -0400 Subject: [PATCH] real timeout should be a bit longer --- views/honkpage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/honkpage.js b/views/honkpage.js index 3ce86d3..f0283e3 100644 --- a/views/honkpage.js +++ b/views/honkpage.js @@ -16,7 +16,7 @@ function post(url, data) { function get(url, whendone, whentimedout) { var x = new XMLHttpRequest() x.open("GET", url) - x.timeout = 5 * 1000 + x.timeout = 15 * 1000 x.responseType = "json" x.onload = function() { whendone(x) } if (whentimedout) {