wyyerd / stripe-rs

Rust API bindings for the Stripe HTTP API.
Apache License 2.0
219 stars 88 forks source link

Fixing `List::get_all` #194

Open phayes opened 2 years ago

phayes commented 2 years ago

This fixed #193, where get_all() ignores query parameters if there are more results than can fit in the first "page" of result sets.

This only fixes it for blocking and has no effect for async. This is OK since get_all() is not implemented for async. I've added TODOs for the relevant code for async.

Edit: This is now done for async as well

phayes commented 2 years ago

This is now fixed for async as well.

phayes commented 2 years ago

This PR has been rebased and is ready for merging