Reduce preload timeout
This commit is contained in:
parent
eedee762b7
commit
0fa7a4e687
|
@ -280,15 +280,15 @@
|
||||||
return response.json();
|
return response.json();
|
||||||
})
|
})
|
||||||
.then(function(jsonResponse) {
|
.then(function(jsonResponse) {
|
||||||
jsonResponse.forEach((f) => {
|
setTimeout(() => {
|
||||||
const url = mapping[f.toLowerCase().replace(new RegExp("\\.[^/.]+$"), "")];
|
jsonResponse.forEach((f) => {
|
||||||
if (!url) return;
|
const url = mapping[f.toLowerCase().replace(new RegExp("\\.[^/.]+$"), "")];
|
||||||
|
if (!url) return;
|
||||||
|
|
||||||
// Preload the asset
|
// Preload the asset
|
||||||
setTimeout(() => {
|
fetch('gameasync/' + url).then().catch();
|
||||||
fetch('gameasync/' + url).then().catch();
|
});
|
||||||
}, 1000);
|
}, 200);
|
||||||
});
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue