Skip to content

Commit

Permalink
1.8.1修复打包bug并优化部分体验
Browse files Browse the repository at this point in the history
  • Loading branch information
fsender committed Apr 18, 2024
1 parent da7eedd commit 18b3cf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions api.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,12 +373,9 @@ def orderCreate(self):
self.tray_notify("抢票失败", "糟糕,是张假票(同时锁定一张票,但被其他人抢走了)\n老姐立即重新抢nya~", "./ico/failed.ico", timeout=8)
elif data["errno"] == 209002: # 统一格式 By FriendshipEnder 4/19
print("嗯, 未获取到购买人信息")
elif data["errno"] == 10005: # Token过期
elif "10005" in str(data["errno"]): # Token过期
print("嗯, Token已过期! 正在重新获取!")
self.tokenGet()
elif data["errno"] == 100051: # Token验证码过期
print("嗯, 验证码已过期! 正在重新获取!")
self.tokenGet()
elif data["errno"] == 100009:
print("唉, 现在暂无余票,请耐心等候。")
elif data["errno"] == 100001:
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

1. 梳理了部分临时文件

2. 更新了版本号
2. 更新了有时候验证码无法弹窗显示的bug

3. 修复打包后产生的部分bug.

Expand Down

0 comments on commit 18b3cf6

Please sign in to comment.