this commit introduced a default limit in the client. However, the limit is also present in the URL. That leads to the 2nd and subsequent pages failing due to passing limit=X&limit=X. That is interpreted as an array by the server, and will fail with a client error.
The fix checks the URL for the limit, and avoids the duplication if present.
this commit introduced a default limit in the client. However, the limit is also present in the URL. That leads to the 2nd and subsequent pages failing due to passing
limit=X&limit=X
. That is interpreted as an array by the server, and will fail with a client error.The fix checks the URL for the limit, and avoids the duplication if present.