diff options
Diffstat (limited to 'src/idevicerestore.c')
-rw-r--r-- | src/idevicerestore.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c index 3ed0f7e..0749fe0 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -741,6 +741,13 @@ int idevicerestore_start(struct idevicerestore_client_t* client) if (client->mode->index == MODE_DFU) { client->mode = &idevicerestore_modes[MODE_RECOVERY]; } else { + if ((client->build_major > 8) && !(client->flags & FLAG_CUSTOM)) { + /* send ApTicket */ + if (recovery_send_ticket(client) < 0) { + error("WARNING: Unable to send APTicket\n"); + } + } + /* now we load the iBEC */ if (recovery_send_ibec(client, build_identity) < 0) { error("ERROR: Unable to send iBEC\n"); |