From add486bbb25a79b401fa68977b67b2f5367f0d34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franc=CC=A7ois=20Benaiteau?= Date: Wed, 1 Jul 2026 13:45:16 +0200 Subject: [PATCH] fix crash on implicit unwrapped optional --- .../UserInterface/App Lock/AppLockModule.Interactor.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wire-ios/Wire-iOS/Sources/UserInterface/App Lock/AppLockModule.Interactor.swift b/wire-ios/Wire-iOS/Sources/UserInterface/App Lock/AppLockModule.Interactor.swift index 2a5d42b3b38..1e35ea7c2ee 100644 --- a/wire-ios/Wire-iOS/Sources/UserInterface/App Lock/AppLockModule.Interactor.swift +++ b/wire-ios/Wire-iOS/Sources/UserInterface/App Lock/AppLockModule.Interactor.swift @@ -123,7 +123,7 @@ extension AppLockModule.Interactor: AppLockInteractorPresenterInterface { private func handleAuthenticationResult(_ result: AppLockModule.AuthenticationResult) { DispatchQueue.main.async(group: dispatchGroup) { [weak self] in - guard let self else { return } + guard let self, let presenter else { return } switch result { case .granted: