Fix: use correct backend address (including www.)

This commit is contained in:
Pieter Vander Vennet 2023-05-17 13:48:38 +02:00
parent e2b3032198
commit c320239610

View file

@ -17,7 +17,7 @@ export default class OsmObjectDownloader {
private historyCache = new Map<string, UIEventSource<OsmObject[]>>()
constructor(
backend: string = "https://openstreetmap.org",
backend: string = "https://www.openstreetmap.org",
changes?: {
readonly pendingChanges: UIEventSource<ChangeDescription[]>
readonly isUploading: Store<boolean>