This commit is contained in:
meusinfirmary
2025-06-24 01:49:25 +07:00
parent bd52094c5f
commit 75832125e2

View File

@ -276,7 +276,7 @@ const go = async () => {
const index = async () => {
while (1 == 1) {
await go();
await new Promise((r) => setTimeout(r, 300));
await new Promise((r) => setTimeout(r, 1000));
}
};