iOS 10.3.2 http post/get issue

Hi all,

We are having an issue where since the new 10.3.2 iOS update all out http request simply do not wait for data to be returned from our API endpoint. The app just continues over the code and then proceeds to crash and restart.

Anyone aware of this issue?

this.http.post(this.constants.urls.webApi, “pin=” + encodeURIComponent(pin), { headers: headers })
.subscribe(data => …)};

The subscribe never gets called?

Is the endpoint https?

No, not for our testing environment at least?

Why, does it need to be https for iOS 10.3.2?

My understanding is that Apple now mandates https for all app interaction.

Would it still have worked on iOS 9.2, as it was fine until we updated to 10.3.2?