Skip to content

Commit

Permalink
Corrected parameter to use correct keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
gaslitbytech committed Mar 13, 2013
1 parent 1d1e6ab commit 10ae93d
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 10ae93d

Please sign in to comment.