-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
Missing exported QONErrorDomain
constant
#411
Comments
This relates to issue #392 and would allow regular type checking to work in Swift. If we don't check for the domain there is a potential for collisions with other error domains. |
Hi, @megastep |
This issue is stale because it has been open 7 days with no activity. Remove stale label or comment or this will be closed in 5 days. |
Hi, @megastep |
Just ran into this issue trying to parse
NSError
returned by the SDK (version 5.2.0).It appears that the
QONErrorDomain
constant is not defined anywhere publicly in the SDK, so referencing it in my code to check the domain of errors prevents my app from linking.This line from
QONErrors.h
:There is no corresponding symbol declaration in the module. It feels like it should be in
QONErrors.m
and be set to the value of the private internal constantkeyQONErrorDomain
. I'm not sure what your conventions are for this but it should be trivial enough to fix.The text was updated successfully, but these errors were encountered: