Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error adding a QueryStringParam of type Double #484

Closed
diegofgeremias opened this issue Feb 16, 2021 · 1 comment
Closed

Error adding a QueryStringParam of type Double #484

diegofgeremias opened this issue Feb 16, 2021 · 1 comment
Assignees
Labels

Comments

@diegofgeremias
Copy link

I believe it is just a mistake of the type Ctrl + C Ctrl + V, but the code today is as follows:

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

When in fact I believe it must be something like:

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

@joaoduarte19
Copy link
Collaborator

I'll check ASAP

@joaoduarte19 joaoduarte19 self-assigned this Feb 16, 2021
joaoduarte19 added a commit that referenced this issue Feb 16, 2021
@danieleteti danieleteti added this to the 3.2.2-nitrogen milestone Feb 16, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants