Skip to content

Commit

Permalink
Fix ramdisk version select A5/A6 (fix #497)
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeZGD committed Jun 1, 2024
1 parent ae64966 commit 08a8ef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion restore.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6875,7 +6875,7 @@ device_enter_ramdisk() {
return
elif (( device_proc >= 5 )) && [[ $device_vers == "9"* || $device_vers == "10"* ]]; then
device_rd_build="13A452"
elif (( device_proc >= 5 )) && (( device_det <= 8 )); then
elif (( device_proc >= 5 )) && (( device_det <= 8 )) && [[ $device_mode == "Normal" ]]; then
:
elif (( device_proc >= 5 )); then
print "* To mount /var (/mnt2) for iOS 9-10, I recommend using 9.0.2 (13A452)."
Expand Down

0 comments on commit 08a8ef0

Please sign in to comment.