Skip to content

Commit

Permalink
Hotfix: Fixed trap on download section for beta versions (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
Coopydood authored Jul 27, 2024
1 parent fa887c1 commit 02edd71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/autopilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@ def stage12():
cpydLog("info",str("Requesting notice display"))
showNotice()

if stageSelect == "1" and USR_TARGET_OS >= 100 and USR_TARGET_OS <= 1012 or USR_TARGET_OS >= 15 and USR_TARGET_OS <= 99:
if stageSelect == "1" and USR_TARGET_OS >= 100 and USR_TARGET_OS <= 1012 or stageSelect == "1" and USR_TARGET_OS >= 15 and USR_TARGET_OS <= 99:
stage12()
elif stageSelect == "1":
cpydLog("info","Arming download mechanism")
Expand Down

0 comments on commit 02edd71

Please sign in to comment.