Antoine Barré
Antoine Barré
A potential solution would be to treat the empty response as an error, even if the status code is not… The implementation is not public and only located in the...
It's not indeed, I just didn't see any other option at the time 😅 I get it now. I'll make a PR 👍🏻
Here you go: [Pull Request #58](https://github.com/kean/Get/pull/58)
Sure thing! I'd rather make sure the implementation was good to go before adding some. I'll push another commit for the tests.
It was missing by the time I needed it so I implemented something on my own (locally) for now but it's not as deeply integrated as what you plan on...
Yeah, I tried doing something like this : `func showSpinner() { SwiftSpinner.show(NSLocalizedString("Presenter.noDelay", value: "Connecting to server", comment: "Indicates that the application is connecting to the server")) SwiftSpinner.show(delay: 0.7, title: NSLocalizedString("Presenter.delayOf1.0",...
I'm calling this `SwiftSpinner.hide({ SwiftSpinner.hideCancelsScheduledSpinners = true })` in another function not showed above. For what's showed up there, I'm not duplicating any code cause I'm assigning different strings to...
Yes it does, but the `delay(seconds: 10.0, completion: { SwiftSpinner.show(NSLocalizedString("Presenter.delayOf10.0", value: "Server is taking too long to respond or is'nt responding…", comment: "Indicates that the server is not responding properly"))...
Okay.. I'll try to find a way then.. thanks for you help buddy :)
Thank you for your explanation, I may do as you suggest to answer my problem the best way :)