-
Notifications
You must be signed in to change notification settings - Fork 85
feat(macos): targetClientId acceptance guard and result header for host_file and host_cu #29396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🚩 hostAppControlRequest and hostBrowserRequest lack targetClientId support — intentional scope boundary This PR adds (Refers to lines 628-635) Was this helpful? React with 👍 or 👎 to provide feedback. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isUntargetedLocalnow depends onmainWindow?.conversationManager.conversations, which can be empty/nil before the main window is created or before conversations hydrate. In that state, untargetedhost_file_requestevents that already passedEventStreamClient'slocallyOwnedConversationIdscheck are incorrectly dropped, so legitimate local host-file operations never run. This is a regression from the previous behavior (execute after transport-level ownership filtering) and the same pattern is duplicated in thehost_cu_requestbranch.Useful? React with 👍 / 👎.