From ca455d32bbe12aff16ab5e5d153c9f350353de80 Mon Sep 17 00:00:00 2001 From: lyc8503 Date: Wed, 29 Oct 2025 21:27:03 +0800 Subject: [PATCH] fix missing country in TCP --- worker/src/monitor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker/src/monitor.ts b/worker/src/monitor.ts index 644d613..339439f 100644 --- a/worker/src/monitor.ts +++ b/worker/src/monitor.ts @@ -190,7 +190,7 @@ export async function getStatusWithGlobalPing( if (monitor.method === 'TCP_PING') { const time = Math.round(measurementResult.results[0].result.stats.avg) return { - location: country, + location: country + '/' + city, status: { ping: time, up: true,