Skip to content

Commit

Permalink
feat: 访问账号密码默认为空
Browse files Browse the repository at this point in the history
  • Loading branch information
hanxi committed Jul 5, 2024
1 parent f4d9a6c commit 01d99dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xiaomusic/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = (
Expand Down

0 comments on commit 01d99dc

Please sign in to comment.