Skip to content

Error adding a QueryStringParam of type Double #484

@diegofgeremias

Description

@diegofgeremias

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;

Metadata

Metadata

Assignees

Labels

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions