summaryrefslogtreecommitdiffhomepage
path: root/packages/tui
diff options
context:
space:
mode:
Diffstat (limited to 'packages/tui')
-rw-r--r--packages/tui/internal/components/chat/editor.go5
1 files changed, 2 insertions, 3 deletions
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{