You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
I ran into this error as well... My team thought it would be a good idea to have our REST call Id's be zero indexed, but found that the first element (id 0) would simply result in the REST call without id.
https://gist.github.com/ec07fccaef99ff9a80f1#comments
parameters valued at zero are not passed to the parameter.
if I take out the '' + for scope.start, then zero is NOT inserted into the URL of the POST - you don't get
POST /noogle/find_result/20/0?format=json
you get
POST/noogle/find_result/20?format=json
basically parameters of 0 are falsy and not inserted into URLs.
The text was updated successfully, but these errors were encountered: