Skip to content

Commit

Permalink
Fixed issue in US Reverse Geo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Amundson committed Jun 27, 2023
1 parent 30ab755 commit 88499ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void send(Lookup lookup) throws SmartyException, IOException, Interrupted
DecimalFormat decimalFormat = new DecimalFormat("#.########");
request.putParameter("latitude", decimalFormat.format(lookup.getLatitude()));
request.putParameter("longitude", decimalFormat.format(lookup.getLongitude()));
request.putParameter("source", getSource());
request.putParameter("source", lookup.getSource());

Response httpResponse = this.sender.send(request);

Expand Down

0 comments on commit 88499ad

Please sign in to comment.