Skip to content

Commit

Permalink
Merge pull request maximn#18 from darwindave/master
Browse files Browse the repository at this point in the history
Seems an error has slipped in breaking Places (Nearby) Search.
  • Loading branch information
maximn committed Mar 13, 2013
2 parents 1d1e6ab + 10ae93d commit c57f15d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GoogleMapsApi/Entities/Places/Request/PlacesRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ protected override QueryStringParametersList GetQueryStringParameters()
if (Radius.HasValue)
parameters.Add("radius", Radius.Value.ToString(CultureInfo.InvariantCulture));
if (!string.IsNullOrWhiteSpace(Keyword))
parameters.Add("radius", Keyword);
parameters.Add("keyword", Keyword);
if (!string.IsNullOrWhiteSpace(Language))
parameters.Add("language", Language);
if (!string.IsNullOrWhiteSpace(Types))
Expand Down

0 comments on commit c57f15d

Please sign in to comment.