Skip to content

Commit ccdb60d

Browse files
Correct nominatim URL format
Remove trailing '/' from nominatim URL as this URL format is no longer supported: /search/?q=query URL format no longer supported (should be /search?q=query) #3134 osm-search/Nominatim#3134
1 parent c8d7212 commit ccdb60d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/providers/osm.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export class OpenStreet {
77
*/
88
constructor() {
99
this.settings = {
10-
url: 'https://nominatim.openstreetmap.org/search/',
10+
url: 'https://nominatim.openstreetmap.org/search',
1111

1212
params: {
1313
q: '',

0 commit comments

Comments
 (0)