Fix no device mode

This commit is contained in:
LukeZGD 2023-08-30 10:13:11 +08:00
parent 7e85ba8ccc
commit 19d0c9ee6b

View File

@ -597,6 +597,10 @@ device_get_info() {
;;
esac
if [[ $device_argmode == "none" ]]; then
device_entry
fi
device_model="$(echo $device_model | tr '[:upper:]' '[:lower:]')"
device_model="${device_model%??}" # remove "ap" from the end
if [[ -z $device_type && -n $device_model ]]; then
@ -3345,12 +3349,12 @@ menu_main() {
input "Select an option:"
if [[ $device_mode != "none" ]]; then
menu_items+=("Restore/Downgrade")
fi
if [[ $device_type == "iPad2"* && $device_vers == "4"* ]]; then
:
elif (( device_proc < 7 )); then
menu_items+=("Jailbreak Device")
fi
fi
if (( device_proc < 8 )); then
menu_items+=("Save SHSH Blobs")
fi