From 01d99dc699c03623cde57e0a4870629ae2bdb82a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B6=B5=E6=9B=A6?= Date: Fri, 5 Jul 2024 15:15:31 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=AE=BF=E9=97=AE=E8=B4=A6=E5=8F=B7?= =?UTF-8?q?=E5=AF=86=E7=A0=81=E9=BB=98=E8=AE=A4=E4=B8=BA=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- xiaomusic/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xiaomusic/config.py b/xiaomusic/config.py index ed299dc..a007f9a 100644 --- a/xiaomusic/config.py +++ b/xiaomusic/config.py @@ -86,8 +86,8 @@ class Config: disable_httpauth: bool = ( os.getenv("XIAOMUSIC_DISABLE_HTTPAUTH", "true").lower() == "true" ) - httpauth_username: str = os.getenv("XIAOMUSIC_HTTPAUTH_USERNAME", "admin") - httpauth_password: str = os.getenv("XIAOMUSIC_HTTPAUTH_PASSWORD", "admin") + httpauth_username: str = os.getenv("XIAOMUSIC_HTTPAUTH_USERNAME", "") + httpauth_password: str = os.getenv("XIAOMUSIC_HTTPAUTH_PASSWORD", "") music_list_url: str = os.getenv("XIAOMUSIC_MUSIC_LIST_URL", "") music_list_json: str = os.getenv("XIAOMUSIC_MUSIC_LIST_JSON", "") disable_download: bool = (