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