From 826c19440ee00fe3b24b1fda81117e857e9ca450 Mon Sep 17 00:00:00 2001 From: ijunaid Date: Fri, 24 May 2024 16:37:07 +0500 Subject: [PATCH] Removed extra crash filter callback from Countly.m --- Countly.m | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Countly.m b/Countly.m index 43260e74..676ce993 100644 --- a/Countly.m +++ b/Countly.m @@ -71,13 +71,6 @@ - (instancetype)init return self; } -BOOL (^crashFilterBlock)(CountlyCrashData *) = ^BOOL(CountlyCrashData *crash) { - if ([crash.stackTrace containsString:@"Fatal Error"]) { - return YES; // Filter the crash if the stack trace contains "Fatal Error" - } - return NO; // Otherwise, do not filter the crash -}; - - (void)startWithConfig:(CountlyConfig *)config { if (CountlyCommon.sharedInstance.hasStarted_)