From 34837402dcd995f4c72d7aa574e323a50f50d164 Mon Sep 17 00:00:00 2001 From: Mattermost Build Date: Fri, 21 Mar 2025 08:01:25 +0200 Subject: [PATCH] fix(MM-63460): HTTPClientError spam (#8693) (#8699) (cherry picked from commit 1ddaf5c32f113a0700be875ecf09c240a147cc6c) Co-authored-by: Rahim Rahman --- ios/ErrorReporting/Sentry.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/ErrorReporting/Sentry.swift b/ios/ErrorReporting/Sentry.swift index ca1b60524..a27a56353 100644 --- a/ios/ErrorReporting/Sentry.swift +++ b/ios/ErrorReporting/Sentry.swift @@ -16,7 +16,7 @@ func initSentryAppExt(){ SentrySDK.start { options in options.dsn = SENTRY_DSN options.enableAppHangTracking = false - options.enableCaptureFailedRequests = true + options.enableCaptureFailedRequests = false } } }