mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-12-23 13:04:42 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2adb795896 | ||
|
|
8b251dc407 |
@@ -2,7 +2,7 @@ package common
|
||||
|
||||
const (
|
||||
SERVICENAME = "casaos"
|
||||
VERSION = "0.4.12"
|
||||
VERSION = "0.4.13"
|
||||
BODY = " "
|
||||
RANW_NAME = "IceWhale-RemoteAccess"
|
||||
)
|
||||
|
||||
@@ -257,7 +257,6 @@ func GetDownloadSingleFile(ctx echo.Context) error {
|
||||
ctx.Request().Header.Add("Content-Length", strconv.FormatInt(node.Size(), 10))
|
||||
}
|
||||
http.ServeContent(ctx.Response().Writer, ctx.Request(), fileName, node.ModTime(), fi)
|
||||
// http.ServeFile(c.Writer, ctx.Request(), filePath)
|
||||
defer fi.Close()
|
||||
fileTmp, err := os.Open(filePath)
|
||||
if err != nil {
|
||||
@@ -268,7 +267,7 @@ func GetDownloadSingleFile(ctx echo.Context) error {
|
||||
}
|
||||
defer fileTmp.Close()
|
||||
|
||||
return ctx.File(filePath)
|
||||
return nil
|
||||
}
|
||||
|
||||
// @Summary 获取目录列表
|
||||
|
||||
Reference in New Issue
Block a user