fix missing country in TCP
parent
cf2b81cb2e
commit
ca455d32bb
|
|
@ -190,7 +190,7 @@ export async function getStatusWithGlobalPing(
|
||||||
if (monitor.method === 'TCP_PING') {
|
if (monitor.method === 'TCP_PING') {
|
||||||
const time = Math.round(measurementResult.results[0].result.stats.avg)
|
const time = Math.round(measurementResult.results[0].result.stats.avg)
|
||||||
return {
|
return {
|
||||||
location: country,
|
location: country + '/' + city,
|
||||||
status: {
|
status: {
|
||||||
ping: time,
|
ping: time,
|
||||||
up: true,
|
up: true,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue