Skip to content

Commit

Permalink
fix: annual bigVip
Browse files Browse the repository at this point in the history
  • Loading branch information
ZianTT authored Jun 28, 2024
1 parent 0274cd5 commit 4b68e14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def load_config():
user = user.json()
if user["data"]["isLogin"]:
logger.success("用户 " + user["data"]["uname"] + " 登录成功")
if user["data"]["vipStatus"] == 1:
if user["data"]["vipStatus"] != 0:
logger.info(
f"用户为大会员,距离到期还有{(user['data']['vipDueDate'] / 1000 - time.time()) / 60 / 60 / 24:.2f}天")
import machineid
Expand Down

0 comments on commit 4b68e14

Please sign in to comment.