Skip to content

Commit bb3fd52

Browse files
authored
Merge pull request #248 from fabricecolas/patch-1
Add SSL to API endpoint (api-adresse.data.gouv.fr)
2 parents c8357cb + b7df9b9 commit bb3fd52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/geocoder/opendatafrancegeocoder.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ var OpendataFranceGeocoder = function OpendataFranceGeocoder(httpAdapter, option
1212

1313
util.inherits(OpendataFranceGeocoder, AbstractGeocoder);
1414

15-
OpendataFranceGeocoder.prototype._endpoint = 'http://api-adresse.data.gouv.fr/search';
15+
OpendataFranceGeocoder.prototype._endpoint = 'https://api-adresse.data.gouv.fr/search';
1616

17-
OpendataFranceGeocoder.prototype._endpoint_reverse = 'http://api-adresse.data.gouv.fr/reverse';
17+
OpendataFranceGeocoder.prototype._endpoint_reverse = 'https://api-adresse.data.gouv.fr/reverse';
1818

1919
/**
2020
* Geocode

0 commit comments

Comments
 (0)