From ea723f719c1a70d2116d46d0d4a1ee08ff925452 Mon Sep 17 00:00:00 2001 From: Prospector <6166773+Prospector@users.noreply.github.com> Date: Wed, 29 Apr 2026 12:12:08 -0700 Subject: [PATCH] fix central europe ping (#5948) --- apps/frontend/src/pages/hosting/index.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/frontend/src/pages/hosting/index.vue b/apps/frontend/src/pages/hosting/index.vue index 84734ba18..2e33dbea6 100644 --- a/apps/frontend/src/pages/hosting/index.vue +++ b/apps/frontend/src/pages/hosting/index.vue @@ -1249,8 +1249,12 @@ const PING_COUNT = 20 const PING_INTERVAL = 200 const MAX_PING_TIME = 1000 -function runPingTest(region, index = 1) { - if (index > 10) { +const initialIndex = { + 'eu-lim': 31, +} + +function runPingTest(region, index = initialIndex[region.shortcode] ?? 1) { + if (index > (initialIndex[region.shortcode] ?? 1) + 10) { regionPings.value.push({ region: region.shortcode, ping: -1,