Skip to content

Commit

Permalink
fix: 🐛 fix nominatim address search
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfskaempf committed Aug 11, 2023
1 parent a40eea5 commit ba6540a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion location_field/static/location_field/js/form.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ var SequentialLoader = function() {
}

else if (this.options.searchProvider === 'nominatim') {
var url = '//nominatim.openstreetmap.org/search/?format=json&q=' + address;
var url = '//nominatim.openstreetmap.org/search?format=json&q=' + address;

var request = new XMLHttpRequest();
request.open('GET', url, true);
Expand Down

0 comments on commit ba6540a

Please sign in to comment.