Skip to content
This repository was archived by the owner on Feb 28, 2022. It is now read-only.

Commit f4eff38

Browse files
tomtom44jmfrancois
authored andcommitted
fix(overpass): use // for the api URL (#4)
1 parent 60e47db commit f4eff38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/overpass/overpass.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import osmOverpassAPI from './overpass.service';
66
var osmOverpassModule = angular.module('osm.overpass', [])
77
.provider('osmOverpassAPI', function osmOverpassAPIProvider () {
88
this.options = {
9-
url: 'http://overpass-api.de/api/interpreter'
9+
url: '//overpass-api.de/api/interpreter'
1010
};
1111
this.$get = function osmOverpassAPIFactory($http, $q) {
1212
return new osmOverpassAPI($http, $q, this.options);

0 commit comments

Comments
 (0)