버전 비교 로직 제거

This commit is contained in:
2024-02-07 17:03:19 +09:00
parent 01940222b6
commit f45558483e
6 changed files with 23 additions and 121 deletions

View File

@ -499,10 +499,6 @@ func (h *houstonHandler) GetLogFileLinks(w http.ResponseWriter, r *http.Request)
return
}
if version == "latest" {
version, _ = shared.FindLastestVersion(h.downloadPath, name)
}
root := path.Join(h.downloadPath, name, version)
logfiles, err := os.ReadDir(root)
if err != nil {