From af378990bbf4a754ecc0006f44a36a5579ba571e Mon Sep 17 00:00:00 2001 From: Max Radermacher Date: Thu, 15 Jan 2026 14:52:45 -0600 Subject: [PATCH] Downgrade expected error to warning --- SignalShareExtension/ShareViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SignalShareExtension/ShareViewController.swift b/SignalShareExtension/ShareViewController.swift index 8b492ce8aa..624caee286 100644 --- a/SignalShareExtension/ShareViewController.swift +++ b/SignalShareExtension/ShareViewController.swift @@ -422,11 +422,12 @@ public class ShareViewController: OWSNavigationController, ShareViewDelegate, SA self.shareViewWasCancelled() } default: + Logger.warn("building attachment failed with error: \(error)") + let alertTitle = OWSLocalizedString( "SHARE_EXTENSION_UNABLE_TO_BUILD_ATTACHMENT_ALERT_TITLE", comment: "Shown when trying to share content to a Signal user for the share extension. Followed by failure details.", ) - OWSActionSheets.showActionSheet( title: alertTitle, message: error.userErrorDescription, @@ -434,7 +435,6 @@ public class ShareViewController: OWSNavigationController, ShareViewDelegate, SA ) { _ in self.shareViewWasCancelled() } - owsFailDebug("building attachment failed with error: \(error)") } }