mirror of
https://github.com/omg-xtao/ytdlbot.git
synced 2025-01-30 17:58:36 +00:00
Revert "Now VIP can be disabled, Previously "False" counted as True because string to boolean conversion (#155)"
This reverts commit d44f57c45c
.
This commit is contained in:
parent
d44f57c45c
commit
8fa3cb4aa1
@ -30,7 +30,7 @@ EX = os.getenv("EX", 24 * 3600)
|
||||
MULTIPLY = os.getenv("MULTIPLY", 5) # VIP1 is 5*5-25G, VIP2 is 50G
|
||||
USD2CNY = os.getenv("USD2CNY", 6) # $5 --> ¥30
|
||||
|
||||
ENABLE_VIP: "bool" = True if os.getenv("VIP", False).lower == "true" else False
|
||||
ENABLE_VIP = os.getenv("VIP", False)
|
||||
MAX_DURATION = int(os.getenv("MAX_DURATION", 60))
|
||||
AFD_LINK = os.getenv("AFD_LINK", "https://afdian.net/@BennyThink")
|
||||
COFFEE_LINK = os.getenv("COFFEE_LINK", "https://www.buymeacoffee.com/bennythink")
|
||||
|
Loading…
Reference in New Issue
Block a user