From 7573b788f55c67d4760af6d4e0ba1e8d95324151 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Wed, 20 Nov 2013 18:28:27 +0100 Subject: Don't request ApNonce again for image4 aware devices after loading iBEC --- src/idevicerestore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/idevicerestore.c b/src/idevicerestore.c index d1db628..e5e46c5 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -813,7 +813,7 @@ int idevicerestore_start(struct idevicerestore_client_t* client) } idevicerestore_progress(client, RESTORE_STEP_PREPARE, 0.5); - if (client->build_major > 8) { + if (!client->image4supported && (client->build_major > 8)) { // we need another tss request with nonce. unsigned char* nonce = NULL; int nonce_size = 0; -- cgit v1.1-32-gdbae