You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 9, 2020. It is now read-only.
I noticed that in CNSHockeyManager configureQuincyManager does not set the delegate for sharedQuincyManager.
Without setting the delegate the crashReportDescription method in my app delegate was not firing. (I didn't realize the delegate had not been set because crashReportDescription is part of the CNSHockeyManagerDelegate protocol.)
I noticed that in CNSHockeyManager configureQuincyManager does not set the delegate for sharedQuincyManager.
Without setting the delegate the crashReportDescription method in my app delegate was not firing. (I didn't realize the delegate had not been set because crashReportDescription is part of the CNSHockeyManagerDelegate protocol.)
I added this line to configureQuincyManager:
[[BWQuincyManager sharedQuincyManager] setDelegate:delegate];
(You could add the above line to your app delegate, but it seems counterintuitive.)
The text was updated successfully, but these errors were encountered: