From 01c6081234ad6baebea15515b5e47fa616355ae3 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Mon, 20 Jan 2025 08:10:17 +0100 Subject: [PATCH] browser: switch from static to sql-based relations.json Which was the only user of the old file. Change-Id: I1b1be046be403a050723f4206268b61540d9fbf5 --- src/browser/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/main.ts b/src/browser/main.ts index 7d6651769..368237bb3 100644 --- a/src/browser/main.ts +++ b/src/browser/main.ts @@ -101,7 +101,7 @@ async function onGpsClick() } // Now fetch the list of relations we recognize. - url = config.uriPrefix + "/static/relations.json"; + url = config.uriPrefix + "/api/relations.json"; request = new Request(url); createLoader(gps, getOsmString("str-relations-wait")); let knownRelations: Array = null;