feat: auto-detect clash proxy when updating remote profiles - #28
Merged
Conversation
Align updateRemoteProfile() with addRemoteProfile() — fall back to clash mixed port when no explicit proxy is configured. Also add an update dialog with editable UA/proxy fields so the user can see and override the proxy before updating. Signed-off-by: iHsin <sun@ihsin.dev> Assisted-by: OpenClaw:deepseek-v4-flash
Itsusinn
added a commit
that referenced
this pull request
Jul 31, 2026
Align updateRemoteProfile() with addRemoteProfile() — fall back to clash mixed port when no explicit proxy is configured. Also add an update dialog with editable UA/proxy fields so the user can see and override the proxy before updating. Assisted-by: OpenClaw:deepseek-v4-flash Signed-off-by: iHsin <sun@ihsin.dev>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Align
updateRemoteProfile()withaddRemoteProfile()— when no explicit proxy URL is configured, fall back to the running clash instance's mixed port so updates can go through the VPN tunnel. Also adds an update dialog so the user can inspect and override proxy settings before downloading.Changes
ProfileViewModel.ktupdateRemoteProfile()now has a third fallback:proxyUrl → profile.proxyUrl → Global.clashInstance?.mixedPort()ProfileScreen.ktMotivation
Adding a remote profile already auto-detects the clash mixed port. But updating did not — if the profile was created without a proxy setting, updates would bypass the VPN entirely. This fixes that inconsistency.