[1.2] 리플레이

- 리플레이 파일 이름 유지하도록 수정
This commit is contained in:
2025-05-13 17:37:24 +09:00
parent 5f68795185
commit d8ccbf209c
3 changed files with 21 additions and 15 deletions

View File

@ -8,6 +8,7 @@ import (
"encoding/hex"
"errors"
"os"
"path/filepath"
"strings"
)
@ -129,7 +130,7 @@ func handleStdOutUploadRequest(hc *houstonClient, meta *procmeta, param string)
if _, err := os.Stat(uploadFullPath); err != nil {
return err
} else {
hc.uploadToAppendFile(uploadFullPath, meta.name, meta.version)
hc.uploadToAppendFile(uploadFullPath, meta.name, meta.version, filepath.Base(uploadFullPath))
}
return nil
}