From 92a0204368846d3bff6ef92624c525e1660d3c5d Mon Sep 17 00:00:00 2001 From: jack Date: Tue, 26 Aug 2025 02:13:33 +0200 Subject: [PATCH] ContentView: handle new .meshReachable connection state in header icon switch (exhaustive switch fix) --- bitchat/Views/ContentView.swift | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bitchat/Views/ContentView.swift b/bitchat/Views/ContentView.swift index 0940bdd4..1ee02f94 100644 --- a/bitchat/Views/ContentView.swift +++ b/bitchat/Views/ContentView.swift @@ -1247,6 +1247,12 @@ struct ContentView: View { .font(.system(size: 14)) .foregroundColor(textColor) .accessibilityLabel("Connected via mesh") + case .meshReachable: + // Antenna icon for reachable via mesh (not directly connected) + Image(systemName: "antenna.radiowaves.left.and.right") + .font(.system(size: 14)) + .foregroundColor(textColor) + .accessibilityLabel("Reachable via mesh") case .nostrAvailable: // Purple globe for Nostr Image(systemName: "globe")