diff options
| author | Aiden Cline <[email protected]> | 2025-07-27 12:21:31 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-27 12:21:31 -0500 |
| commit | b18b646f8e50bb0d11bc57d424c3c1920ddaa657 (patch) | |
| tree | 79f14f9c870212a4573f352fd51ede4f1c993513 /packages | |
| parent | 9741a6703cbd1abd4ff292b8d254e6b9100d2a2d (diff) | |
| download | opencode-b18b646f8e50bb0d11bc57d424c3c1920ddaa657.tar.gz opencode-b18b646f8e50bb0d11bc57d424c3c1920ddaa657.zip | |
fix: attachment bugs (#1335)
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/opencode/src/session/index.ts | 6 | ||||
| -rw-r--r-- | packages/tui/internal/components/chat/editor.go | 5 |
2 files changed, 4 insertions, 7 deletions
diff --git a/packages/opencode/src/session/index.ts b/packages/opencode/src/session/index.ts index 0884c658b..5ad6e7da4 100644 --- a/packages/opencode/src/session/index.ts +++ b/packages/opencode/src/session/index.ts @@ -419,9 +419,7 @@ export namespace Session { case "file:": // have to normalize, symbol search returns absolute paths // Decode the pathname since URL constructor doesn't automatically decode it - const pathname = decodeURIComponent(url.pathname) - const relativePath = pathname.replace(app.path.cwd, ".") - const filePath = path.join(app.path.cwd, relativePath) + const filePath = decodeURIComponent(url.pathname) if (part.mime === "text/plain") { let offset: number | undefined = undefined @@ -501,7 +499,7 @@ export namespace Session { messageID: userMsg.id, sessionID: input.sessionID, type: "text", - text: `Called the Read tool with the following input: {\"filePath\":\"${pathname}\"}`, + text: `Called the Read tool with the following input: {\"filePath\":\"${filePath}\"}`, synthetic: true, }, { diff --git a/packages/tui/internal/components/chat/editor.go b/packages/tui/internal/components/chat/editor.go index 4311a4ca7..009a7ab6c 100644 --- a/packages/tui/internal/components/chat/editor.go +++ b/packages/tui/internal/components/chat/editor.go @@ -4,7 +4,6 @@ import ( "encoding/base64" "fmt" "log/slog" - "net/url" "os" "path/filepath" "strconv" @@ -732,7 +731,7 @@ func (m *editorComponent) createAttachmentFromFile(filePath string) *attachment. ID: uuid.NewString(), Type: "file", Display: "@" + filePath, - URL: fmt.Sprintf("file://./%s", filePath), + URL: fmt.Sprintf("file://%s", absolutePath), Filename: filePath, MediaType: mediaType, Source: &attachment.FileSource{ @@ -783,7 +782,7 @@ func (m *editorComponent) createAttachmentFromPath(filePath string) *attachment. ID: uuid.NewString(), Type: "file", Display: "@" + filePath, - URL: fmt.Sprintf("file://./%s", url.PathEscape(filePath)), + URL: fmt.Sprintf("file://%s", absolutePath), Filename: filePath, MediaType: mediaType, Source: &attachment.FileSource{ |
