Skip to content

Commit cfcf82c

Browse files
authored
fix: solve uncorrect delete file. (#784)
1 parent 794e5a7 commit cfcf82c

File tree

1 file changed

+11
-3
lines changed
  • internal/conversation_msg

1 file changed

+11
-3
lines changed

internal/conversation_msg/api.go

+11-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package conversation_msg
33
import (
44
"context"
55
"fmt"
6-
pconstant "github.com/openimsdk/protocol/constant"
76
"net/url"
87
"os"
98
"path/filepath"
@@ -12,6 +11,8 @@ import (
1211
"sync"
1312
"time"
1413

14+
pconstant "github.com/openimsdk/protocol/constant"
15+
1516
"github.com/openimsdk/tools/errs"
1617

1718
"github.com/openimsdk/openim-sdk-core/v3/internal/third/file"
@@ -487,11 +488,18 @@ func (c *Conversation) SendMessage(ctx context.Context, s *sdk_struct.MsgStruct,
487488
name = fmt.Sprintf("msg_file_%s.unknown", s.ClientMsgID)
488489
}
489490

490-
delFile = append(delFile, s.FileElem.FilePath)
491+
var sourcePath string
492+
if utils.FileExist(s.FileElem.FilePath) {
493+
sourcePath = s.FileElem.FilePath
494+
delFile = append(delFile, utils.FileTmpPath(s.FileElem.FilePath, c.DataDir))
495+
} else {
496+
sourcePath = utils.FileTmpPath(s.FileElem.FilePath, c.DataDir)
497+
delFile = append(delFile, sourcePath)
498+
}
491499

492500
res, err := c.file.UploadFile(ctx, &file.UploadFileReq{
493501
ContentType: content_type.GetType(s.FileElem.FileType, filepath.Ext(s.FileElem.FilePath), filepath.Ext(s.FileElem.FileName)),
494-
Filepath: s.FileElem.FilePath,
502+
Filepath: sourcePath,
495503
Uuid: s.FileElem.UUID,
496504
Name: c.fileName("file", s.ClientMsgID) + "/" + filepath.Base(name),
497505
Cause: "msg-file",

0 commit comments

Comments
 (0)