Add bigger timeout to loading.html

This commit is contained in:
Théophile Diot 2023-04-25 19:58:32 +02:00
parent da4bb8dce6
commit b64e55f75a
No known key found for this signature in database
GPG Key ID: E752C80DB72BB014
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@
async function check_reloading() {
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), 500);
const timeoutId = setTimeout(() => controller.abort(), 2000);
const response = await fetch(
`${location.href.replace("/loading", "/check_reloading")}`,
{ signal: controller.signal }