Change error message for xhr status 0

This commit is contained in:
2025-01-27 22:58:41 +01:00
parent 4d1680b7f5
commit 3973e06651

View File

@@ -142,7 +142,7 @@ export const start = () => {
setTimeout(start, 5000) setTimeout(start, 5000)
} }
} else if (xhr.status === 0) { } else if (xhr.status === 0) {
on_failure("request_failed", "Your request did not arrive, or the server blocked the request") on_failure("request_failed", "The connection was interrupted")
} else { } else {
// Request did not arrive // Request did not arrive
if (tries < 3) { if (tries < 3) {