1
0
mirror of https://github.com/hanxi/xiaomusic.git synced 2026-03-27 10:09:45 +08:00

默认不延迟下一首歌曲时间

This commit is contained in:
涵曦
2026-01-18 15:53:06 +08:00
parent a61f890c14
commit dc5cfe7ae9

View File

@@ -173,7 +173,7 @@ class Config:
os.getenv("XIAOMUSIC_REMOVE_ID3TAG", "false").lower() == "true"
)
convert_to_mp3: bool = os.getenv("CONVERT_TO_MP3", "false").lower() == "true"
delay_sec: int = int(os.getenv("XIAOMUSIC_DELAY_SEC", 3)) # 下一首歌延迟播放秒数
delay_sec: int = int(os.getenv("XIAOMUSIC_DELAY_SEC", 0)) # 下一首歌延迟播放秒数
continue_play: bool = (
os.getenv("XIAOMUSIC_CONTINUE_PLAY", "false").lower() == "true"
)