diff options
| author | Aiden Cline <[email protected]> | 2025-07-10 11:19:54 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-10 11:19:54 -0500 |
| commit | 8b2a909e1f29b7c024d70b6eb5da7d73e9307941 (patch) | |
| tree | 52a2243d7c0c38e9cd9af251e3a341dd3530b68e /packages/tui | |
| parent | e9c954d45e0417f2633f2f627a2ceee08db6b4c2 (diff) | |
| download | opencode-8b2a909e1f29b7c024d70b6eb5da7d73e9307941.tar.gz opencode-8b2a909e1f29b7c024d70b6eb5da7d73e9307941.zip | |
fix: encode & decode file paths (#843)
Diffstat (limited to 'packages/tui')
| -rw-r--r-- | packages/tui/internal/components/chat/editor.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/tui/internal/components/chat/editor.go b/packages/tui/internal/components/chat/editor.go index 3bf11b231..2ed2a9079 100644 --- a/packages/tui/internal/components/chat/editor.go +++ b/packages/tui/internal/components/chat/editor.go @@ -4,6 +4,7 @@ import ( "encoding/base64" "fmt" "log/slog" + "net/url" "os" "path/filepath" "strconv" @@ -180,7 +181,7 @@ func (m *editorComponent) Update(msg tea.Msg) (tea.Model, tea.Cmd) { attachment := &textarea.Attachment{ ID: uuid.NewString(), Display: "@" + filePath, - URL: fmt.Sprintf("file://./%s", filePath), + URL: fmt.Sprintf("file://./%s", url.PathEscape(filePath)), Filename: filePath, MediaType: mediaType, } |
