From 4e532d298d532e003bf05029279d70d304923d63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B6=B5=E6=9B=A6?= Date: Sun, 18 Aug 2024 02:39:22 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=BB=98=E8=AE=A4=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E7=9B=AE=E5=BD=95=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- xiaomusic/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xiaomusic/config.py b/xiaomusic/config.py index 126278b..cac3e5a 100644 --- a/xiaomusic/config.py +++ b/xiaomusic/config.py @@ -74,7 +74,7 @@ class Config: music_path: str = os.getenv( "XIAOMUSIC_MUSIC_PATH", "music" ) # 只能是music目录下的子目录 - download_path: str = os.getenv("XIAOMUSIC_DOWNLOAD_PATH", "") + download_path: str = os.getenv("XIAOMUSIC_DOWNLOAD_PATH", "music/download") conf_path: str = os.getenv("XIAOMUSIC_CONF_PATH", "conf") hostname: str = os.getenv("XIAOMUSIC_HOSTNAME", "192.168.2.5") port: int = int(os.getenv("XIAOMUSIC_PORT", "8090")) # 监听端口