From 75832125e2a8b118e878bfe0fa30a4d83adb8dda Mon Sep 17 00:00:00 2001 From: meusinfirmary Date: Tue, 24 Jun 2025 01:49:25 +0700 Subject: [PATCH] update --- cron/ReverseGeocodeWorker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cron/ReverseGeocodeWorker.js b/cron/ReverseGeocodeWorker.js index 28cf297..f8af696 100644 --- a/cron/ReverseGeocodeWorker.js +++ b/cron/ReverseGeocodeWorker.js @@ -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)); } };