From 918aa599209fdd40a2235ce58215a73823260f46 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Thu, 6 Mar 2025 14:51:49 -0800 Subject: [PATCH] Sentry: Temporarily disable app hang detection Signed-off-by: Christopher Snowhill --- Application/AppController.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Application/AppController.m b/Application/AppController.m index 341ecbe49..2a60c5073 100644 --- a/Application/AppController.m +++ b/Application/AppController.m @@ -330,6 +330,9 @@ static BOOL consentLastEnabled = NO; options.dsn = @"https://b5eda1c2390eb965a74dd735413b6392@cog-analytics.losno.co/3"; options.debug = YES; // Enabled debug when first installing is always helpful + // Temporary until there's a better solution + options.enableAppHangTracking = NO; + // Set tracesSampleRate to 1.0 to capture 100% of transactions for performance monitoring. // We recommend adjusting this value in production. options.tracesSampleRate = @1.0;