I have this code;
PFCloud.callFunction(inBackground: "getUserLikesAndReactionsForIds", withParameters: parameters) { (response, error) in
// it sometimes doesn’t get here
}
The issue is that it never goes inside the callback in one certain occasion, which is weird because that occasion doesn’t affect the way this gets called.
What could interrupt the callback from being executed?
I’m on 1.19.0
.