This commit is contained in:
GH Action - Upstream Sync 2023-04-24 01:00:05 +00:00
commit d5bd77cca1

View File

@ -36,7 +36,7 @@ async function fetchEN() {
try {
// const raw = await (await fetch(EN_URL)).text();
const response = await Promise.race([fetch(EN_URL), timeoutPromise(5000)]);
const raw = response.text();
const raw = await response.text();
return raw
.split("\n")
.slice(1)