Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Models/ConnectionSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down