From faf1b1df8dfedc3b9778d3a80d5428d49bdf89f2 Mon Sep 17 00:00:00 2001 From: Shane Neuville Date: Sun, 8 Feb 2026 10:26:02 -0600 Subject: [PATCH] Remove hardcoded LAN IP from Android defaults --- Models/ConnectionSettings.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Models/ConnectionSettings.cs b/Models/ConnectionSettings.cs index 02713bfcce..581c092604 100644 --- a/Models/ConnectionSettings.cs +++ b/Models/ConnectionSettings.cs @@ -54,11 +54,12 @@ public static ConnectionSettings Load() private static ConnectionSettings DefaultSettings() { #if ANDROID - // Android can't run Copilot locally — default to persistent mode with common LAN IP + // Android can't run Copilot locally — default to persistent mode + // User must configure the host IP in Settings to point to their Mac return new ConnectionSettings { Mode = ConnectionMode.Persistent, - Host = "192.168.50.72", // Mac host on local network + Host = "localhost", Port = 4321 }; #else