Skip to content

Commit

Permalink
browser: switch from static to sql-based relations.json
Browse files Browse the repository at this point in the history
Which was the only user of the old file.

Change-Id: I1b1be046be403a050723f4206268b61540d9fbf5
  • Loading branch information
vmiklos committed Jan 20, 2025
1 parent 3a7f6dc commit 01c6081
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/browser/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<number> = null;
Expand Down

0 comments on commit 01c6081

Please sign in to comment.