Skip to content

Commit

Permalink
Fixed search by location
Browse files Browse the repository at this point in the history
  • Loading branch information
harshitvora committed Aug 18, 2017
1 parent 45c81c0 commit de82206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/services/venue.service.client.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
}

function searchVenueById(id) {
var url = "https://api.foursquare.com/v2/venues/"+id+"?client_id="+CLIENT_ID+"&client_secret="+CLIENT_SECRET+"&v=20170801";
var url = "https://api.foursquare.com/v2/venues/"+id+"?client_id="+FOURSQUARE_CLIENT_ID+"&client_secret="+FOURSQUARE_CLIENT_SECRET+"&v=20170801";
return $http.get(url).then(function (response) {
return response.data;
});
Expand Down

0 comments on commit de82206

Please sign in to comment.