We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We saw a crash:
2020-06-09 08:07:10.473734+0100 snappy[11437:2988605] WF: _WebFilterIsActive returning: NO 2020-06-09 08:07:10.474902+0100 snappy[11437:2988605] [ProcessSwapping] 0x11b6181a8 - ProvisionalPageProxy::didFailProvisionalLoadForFrame: pageProxyID=19 webPageID=30, frameID=3, navigationID=3 2020-06-09 08:07:10.475378+0100 snappy[11437:2988605] -[RXPiOS.HPPManager HPPViewControllerFailedWithError:]: unrecognized selector sent to instance 0x11e186280 2020-06-09 08:07:10.492547+0100 snappy[11437:2988605] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[RXPiOS.HPPManager HPPViewControllerFailedWithError:]: unrecognized selector sent to instance 0x11e186280'
Looking at HPPManager it is obvious that:
private func HPPViewControllerFailedWithError(_ error: Error?) { self.delegate?.HPPManagerFailedWithError!(error as NSError?) self.genericDelegate?.HPPManagerFailedWithError(error) self.hppViewController.dismiss(animated: true, completion: nil) }
should be:
func HPPViewControllerFailedWithError(_ error: NSError?) { self.delegate?.HPPManagerFailedWithError!(error as NSError?) self.genericDelegate?.HPPManagerFailedWithError(error) self.hppViewController.dismiss(animated: true, completion: nil) }
Someone used Error instead of NSError as the parameter and to silence the Xcode warning they clicked "fix" making the function private.
The text was updated successfully, but these errors were encountered:
Fix HPPViewControllerFailedWithError delegate method
208ce61
Fix for issue: globalpayments#27
Thanks for fixing this in the latest master - please mark this as resolved
Sorry, something went wrong.
No branches or pull requests
We saw a crash:
2020-06-09 08:07:10.473734+0100 snappy[11437:2988605] WF: _WebFilterIsActive returning: NO
2020-06-09 08:07:10.474902+0100 snappy[11437:2988605] [ProcessSwapping] 0x11b6181a8 - ProvisionalPageProxy::didFailProvisionalLoadForFrame: pageProxyID=19 webPageID=30, frameID=3, navigationID=3
2020-06-09 08:07:10.475378+0100 snappy[11437:2988605] -[RXPiOS.HPPManager HPPViewControllerFailedWithError:]: unrecognized selector sent to instance 0x11e186280
2020-06-09 08:07:10.492547+0100 snappy[11437:2988605] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[RXPiOS.HPPManager HPPViewControllerFailedWithError:]: unrecognized selector sent to instance 0x11e186280'
Looking at HPPManager it is obvious that:
should be:
Someone used Error instead of NSError as the parameter and to silence the Xcode warning they clicked "fix" making the function private.
The text was updated successfully, but these errors were encountered: