Skip to content

Commit

Permalink
修复优选模式无法停止的 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sakurasep authored Mar 11, 2024
1 parent 36a26c1 commit c567b54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/main/get_seat.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def check_reservation_status(seat_id, m):
interrupted = True
elif status == "该空间当前状态不可预约":
logger.info("此位置已被预约")
if m == "3":
if m == "1":
logger.info(f"{seat_id} 已被预约,加入排除名单")
global_exclude_ids.add(seat_id)
time.sleep(1)
Expand Down

0 comments on commit c567b54

Please sign in to comment.