diff --git a/ElementX/Sources/Application/AppCoordinator.swift b/ElementX/Sources/Application/AppCoordinator.swift index 46b83a40d0..928c27db8f 100644 --- a/ElementX/Sources/Application/AppCoordinator.swift +++ b/ElementX/Sources/Application/AppCoordinator.swift @@ -665,7 +665,6 @@ class AppCoordinator: AppCoordinatorProtocol, AuthenticationFlowCoordinatorDeleg let reachabilityNotificationIdentifier = "io.element.elementx.reachability.notification" ServiceLocator.shared.networkMonitor .reachabilityPublisher - .removeDuplicates() .sink { reachability in MXLog.info("Reachability changed to \(reachability)") diff --git a/ElementX/Sources/Services/Client/ClientProxy.swift b/ElementX/Sources/Services/Client/ClientProxy.swift index a2260fee73..e55d4e0bf4 100644 --- a/ElementX/Sources/Services/Client/ClientProxy.swift +++ b/ElementX/Sources/Services/Client/ClientProxy.swift @@ -173,11 +173,10 @@ class ClientProxy: ClientProxyProtocol { }) sendQueueStatusSubject - .removeDuplicates() .combineLatest(networkMonitor.reachabilityPublisher) .debounce(for: 1.0, scheduler: DispatchQueue.main) .sink { enabled, reachability in - MXLog.info("Send queue status changed to enabled: \(enabled)") + MXLog.info("Send queue status changed to enabled: \(enabled), reachability: \(reachability)") if enabled == false, reachability == .reachable { MXLog.info("Enabling all send queues")