Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Commit

Permalink
Fixes bug with not sending crash reports in extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
Murat Baysangurov committed Dec 15, 2017
1 parent dc85743 commit 377b0c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/BITCrashManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ - (void)triggerDelayedProcessing {
*/
- (void)invokeDelayedProcessing {
#if !defined (HOCKEYSDK_CONFIGURATION_ReleaseCrashOnlyExtensions)
if ([BITHockeyHelper applicationState] != BITApplicationStateActive) {
if (!bit_isRunningInAppExtension() && [BITHockeyHelper applicationState] != BITApplicationStateActive) {
return;
}
#endif
Expand Down

0 comments on commit 377b0c6

Please sign in to comment.