mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-06-16 05:55:33 +00:00
fix: get file content twice (#2000)
This commit is contained in:
parent
e4bf67dad5
commit
8b251dc407
@ -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 获取目录列表
|
||||
|
Loading…
x
Reference in New Issue
Block a user