fix(ios): own gateway setup deep-link delivery#100328
Merged
Merged
Conversation
Contributor
Author
|
Land-ready proof for exact head
No visual layout or styling changed; screenshots would not add useful before/after UI evidence. |
Contributor
Author
|
Merged via squash.
|
github-actions Bot
pushed a commit
to Desicool/openclaw
that referenced
this pull request
Jul 6, 2026
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.
What Problem This Solves
#100258 fixed the omitted TLS-port default from #99887, but repeated live gateway setup links exposed a separate delivery race: any mounted
SettingsProTabcould consume the app-global one-shot request, including a hidden embedded settings surface. The visible canonical Settings screen could then miss the link entirely.Why This Change Was Made
RootTabsthe single owner of gateway setup link consumption and routing.User Impact
Repeated
openclaw://gateway/setuplinks now reliably populate the visible gateway settings on both phone and iPad. TLS links without an explicit port use 443, plaintext links use 18789, explicit ports remain unchanged, and an already-applied link is not replayed.Evidence
swift test --package-path apps/shared/OpenClawKit --filter DeepLinksSecurityTests— 21/21 passed.node --import tsx scripts/native-app-i18n.ts check— 2,493 entries, no changes required.xcodebuild -project apps/ios/OpenClaw.xcodeproj -scheme OpenClaw -configuration Debug -destination 'id=E617A5DF-735E-442C-98EC-31C140517359' -derivedDataPath /tmp/pr99887-final-derived build— succeeded.git diff --check origin/main...HEAD— clean.No visual layout or styling changed, so before/after screenshots would not add useful UI evidence.
Follow-up to #99887 and #100258.