From 0ed48e0de7b6447d218b9a96829b44e59b245690 Mon Sep 17 00:00:00 2001 From: mklee Date: Tue, 13 May 2025 18:14:16 +0900 Subject: [PATCH] =?UTF-8?q?[1.2]=20=EB=A6=AC=ED=94=8C=EB=A0=88=EC=9D=B4=20?= =?UTF-8?q?-=20=EB=A6=AC=ED=94=8C=EB=A0=88=EC=9D=B4=20=ED=8C=8C=EC=9D=BC?= =?UTF-8?q?=20=EB=8B=A4=EC=9A=B4=EB=A1=9C=EB=93=9C=20api=20=EB=B0=B0?= =?UTF-8?q?=EC=97=B4=EB=A1=9C=20=EB=B0=98=ED=99=98=ED=95=98=EB=8F=84?= =?UTF-8?q?=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/http_api.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/http_api.go b/server/http_api.go index 0463ac4..ab83ed8 100644 --- a/server/http_api.go +++ b/server/http_api.go @@ -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) {