From 49be1b84d55efc214b513c347f3af4b478912f32 Mon Sep 17 00:00:00 2001 From: Stream Date: Tue, 5 May 2026 18:20:01 +0300 Subject: [PATCH] auto-sync: 2026-05-05 18:20:01 --- tasks/enduro-trails/prototype/static/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/enduro-trails/prototype/static/app.js b/tasks/enduro-trails/prototype/static/app.js index 4261705..4e08f41 100644 --- a/tasks/enduro-trails/prototype/static/app.js +++ b/tasks/enduro-trails/prototype/static/app.js @@ -513,7 +513,7 @@ async function reverseGeocode(lat, lon) { ); const data = await resp.json(); const a = data.address || {}; - const name = a.village || a.town || a.city || a.suburb || a.road || a.county || a.state || `${lat.toFixed(3)}, ${lon.toFixed(3)}`; + const name = a.village || a.hamlet || a.town || a.city || a.suburb || a.road || a.county || a.state || `${lat.toFixed(3)}, ${lon.toFixed(3)}`; geocodeCache[key] = name; return name; } catch(e) {