rootstrap / ios-base

Boilerplate for new iOS projects using Swift 5. Provides a handful of functionalities.
https://rootstrap.com/
MIT License
258 stars 63 forks source link

Fix: API Service #144

Closed mato2593 closed 4 years ago

mato2593 commented 4 years ago

Description:

For requests where we are not parsing the response, the onSuccess callback is always being called. This is because of how Moya works (a 404 server response is successful for Moya), and to solve this we must filter successful responses.


Notes:

Closes #143