Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions assistant/src/tools/host-filesystem/edit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ class HostFileEditTool implements Tool {
// cross-client turn. On web/ios, the call must fail loudly rather
// than silently target the daemon container's filesystem.
// Note: this scoping deliberately differs from host_bash
// (host-shell.ts:239-247), which rejects unconditionally; see PR #29613
// review discussion for rationale.
// (host-shell.ts:239-247), which rejects unconditionally for any
// stale target_client_id regardless of transport.
if (
targetClientId != null &&
transportInterface != null &&
Expand Down
4 changes: 2 additions & 2 deletions assistant/src/tools/host-filesystem/read.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ class HostFileReadTool implements Tool {
// cross-client turn. On web/ios, the call must fail loudly rather
// than silently target the daemon container's filesystem.
// Note: this scoping deliberately differs from host_bash
// (host-shell.ts:239-247), which rejects unconditionally; see PR #29613
// review discussion for rationale.
// (host-shell.ts:239-247), which rejects unconditionally for any
// stale target_client_id regardless of transport.
if (
targetClientId != null &&
transportInterface != null &&
Expand Down
4 changes: 2 additions & 2 deletions assistant/src/tools/host-filesystem/transfer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ class HostFileTransferTool implements Tool {
// turn. On web/ios, the call must fail loudly rather than silently
// target the daemon container's filesystem.
// Note: this scoping deliberately differs from host_bash
// (host-shell.ts:239-247), which rejects unconditionally; see PR #29613
// review discussion for rationale.
// (host-shell.ts:239-247), which rejects unconditionally for any
// stale target_client_id regardless of transport.
if (
targetClientId != null &&
context.transportInterface != null &&
Expand Down
4 changes: 2 additions & 2 deletions assistant/src/tools/host-filesystem/write.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ class HostFileWriteTool implements Tool {
// cross-client turn. On web/ios, the call must fail loudly rather
// than silently target the daemon container's filesystem.
// Note: this scoping deliberately differs from host_bash
// (host-shell.ts:239-247), which rejects unconditionally; see PR #29613
// review discussion for rationale.
// (host-shell.ts:239-247), which rejects unconditionally for any
// stale target_client_id regardless of transport.
if (
targetClientId != null &&
transportInterface != null &&
Expand Down
Loading