[1.2] 리플레이

- 리플레이 파일 다운로드 api 배열로 반환하도록 수정
This commit is contained in:
2025-05-13 18:14:16 +09:00
parent d8ccbf209c
commit 0ed48e0de7

View File

@ -545,9 +545,9 @@ func (h *houstonHandler) GetDemoFileLink(w http.ResponseWriter, r *http.Request)
return
}
link := path.Join(sub_folder_name_downloads, name, version, demoFileInfo.Name())
out := []string{path.Join(sub_folder_name_downloads, name, version, demoFileInfo.Name())}
enc := json.NewEncoder(w)
enc.Encode(link)
enc.Encode(out)
}
func (h *houstonHandler) GetDeployingProgress(w http.ResponseWriter, r *http.Request) {