We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In AbstractApi.php, the function retrieveData makes a redundant final request if the limit is defined over 200.
On line 357, the if statement to reset $limit to zero and end the while loop is currently like this:
$newDataSet['offset'] >= $newDataSet['total_count']
This way, the while loop continues for another request whose result will be definitely empty.
I think it should be like this:
$newDataSet['limit'] + $newDataSet['offset'] >= $newDataSet['total_count']
Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In AbstractApi.php, the function retrieveData makes a redundant final request if the limit is defined over 200.
On line 357, the if statement to reset $limit to zero and end the while loop is currently like this:
This way, the while loop continues for another request whose result will be definitely empty.
I think it should be like this:
Thanks.
The text was updated successfully, but these errors were encountered: