From 09ac1355d1386872908d091598cdadf71d6f409c Mon Sep 17 00:00:00 2001 From: Tony Li Date: Tue, 27 Feb 2024 10:42:16 +1300 Subject: [PATCH] Add a missed `completion` call The call was missed in https://github.com/wordpress-mobile/WordPress-iOS/pull/22612 --- .../Jetpack/Install/JetpackNativeConnectionService.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/WordPress/Classes/ViewRelated/Jetpack/Install/JetpackNativeConnectionService.swift b/WordPress/Classes/ViewRelated/Jetpack/Install/JetpackNativeConnectionService.swift index cbdb16df14be..ea73c510f507 100644 --- a/WordPress/Classes/ViewRelated/Jetpack/Install/JetpackNativeConnectionService.swift +++ b/WordPress/Classes/ViewRelated/Jetpack/Install/JetpackNativeConnectionService.swift @@ -76,6 +76,7 @@ final class JetpackNativeConnectionService: NSObject { } return .failure(.remote(original.localizedDescription)) } + completion(result) } } }