Hello,
Before upgrading to Swift 3 (Swift 2.2), I was getting an HTTP error when the wifi of my ipad was off. Now I am not getting anything. I am using the latest version of SwiftyDropbox and apart of that, eveything seems to work fine.
I already saw in here: https://github.com/dropbox/SwiftyDropbox
This:
.response { response, error in
if let response = response {
print(response)
} else if let error = error {
print(error)
}
}and actually that was the way I was doing it. It is just not giving any response when the wifi is off anymore.
When the wifi is on and there is internet connection, everything works.
What could be happening?
Thanks!