Skip to content

Commit

Permalink
[x] Fix #484
Browse files Browse the repository at this point in the history
  • Loading branch information
joaoduarte19 committed Feb 16, 2021
1 parent c55bfea commit 15136ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/MVCFramework.RESTClient.pas
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ function TMVCRESTClient.AddPathParam(const aName: string; aValue: Integer): IMVC

function TMVCRESTClient.AddQueryStringParam(const aName: string; aValue: Double): IMVCRESTClient;
begin
Result := AddPathParam(aName, aValue.ToString);
Result := AddQueryStringParam(aName, aValue.ToString);
end;

function TMVCRESTClient.AddQueryStringParam(const aName: string; aValue: TTime): IMVCRESTClient;
Expand Down

0 comments on commit 15136ac

Please sign in to comment.