From c320239610f15083d1d050f17e337780621f7dc3 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Wed, 17 May 2023 13:48:38 +0200 Subject: [PATCH] Fix: use correct backend address (including www.) --- Logic/Osm/OsmObjectDownloader.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Logic/Osm/OsmObjectDownloader.ts b/Logic/Osm/OsmObjectDownloader.ts index 6408f340ef..c6c238eb8a 100644 --- a/Logic/Osm/OsmObjectDownloader.ts +++ b/Logic/Osm/OsmObjectDownloader.ts @@ -17,7 +17,7 @@ export default class OsmObjectDownloader { private historyCache = new Map>() constructor( - backend: string = "https://openstreetmap.org", + backend: string = "https://www.openstreetmap.org", changes?: { readonly pendingChanges: UIEventSource readonly isUploading: Store