From 1153033556c23b05ee80b776fb4bc01538594b5d Mon Sep 17 00:00:00 2001 From: zHElEARN Date: Mon, 27 Jul 2026 16:15:03 +0800 Subject: [PATCH] Fix reconnect case label in start_remote_debug_server: 0x800002d should be 0xe800002d --- src/ios-deploy/ios-deploy.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ios-deploy/ios-deploy.m b/src/ios-deploy/ios-deploy.m index 41f0b933..d27f43b6 100644 --- a/src/ios-deploy/ios-deploy.m +++ b/src/ios-deploy/ios-deploy.m @@ -1304,7 +1304,7 @@ ServiceConnRef start_remote_debug_server(AMDeviceRef device) { NSLogOut(@"Waiting for the device to scan mounted image"); sleep(1); break; - case 0x800002d: + case 0xe800002d: NSLogOut(@"Reconnecting to device"); // We dont call AMDeviceStopSession as we cannot send any messages anymore check_error(AMDeviceDisconnect(device));