From 5ac641999e2acb3413d61235562995e09cf62038 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=99=E6=B3=93=E9=93=AE?= Date: Sun, 29 Jun 2025 14:44:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20download=20path=E4=B8=8D=E5=86=8D?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E6=97=B6=E9=97=B4=E6=88=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index 0f04e438..aba43f25 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -62,7 +62,7 @@ func GetConfig() *Config { startTimeStr := cfg.StartTime.Format("20060102150405") resultsDir := filepath.Join(ResultsDirName, startTimeStr) cfg.resultsPath = filepath.Join(cfg.RootDir, resultsDir) - cfg.downloadsPath = filepath.Join(cfg.RootDir, filepath.Join(DownloadsDirName, startTimeStr)) + cfg.downloadsPath = filepath.Join(cfg.RootDir, filepath.Join(DownloadsDirName)) cfg.screenShotsPath = filepath.Join(cfg.resultsPath, ScreenshotsDirName) cfg.actionLogDirPath = filepath.Join(resultsDir, ActionLogDirName) globalConfig = cfg