diff --git a/src/ios-deploy/ios-deploy.m b/src/ios-deploy/ios-deploy.m index 36a27e4..f4f6802 100644 --- a/src/ios-deploy/ios-deploy.m +++ b/src/ios-deploy/ios-deploy.m @@ -333,6 +333,7 @@ const CFStringRef get_device_hardware_name(const AMDeviceRef device) { GET_FRIENDLY_MODEL_NAME(model, "K66AP", "Apple TV 2G") GET_FRIENDLY_MODEL_NAME(model, "J33AP", "Apple TV 3G") GET_FRIENDLY_MODEL_NAME(model, "J33IAP", "Apple TV 3.1G") + GET_FRIENDLY_MODEL_NAME(model, "J42dAP", "Apple TV 4G") // iPhone @@ -357,6 +358,8 @@ const CFStringRef get_device_hardware_name(const AMDeviceRef device) { GET_FRIENDLY_MODEL_NAME(model, "N66mAP", "iPhone 6s Plus") GET_FRIENDLY_MODEL_NAME(model, "N69AP", "iPhone SE") + + return model; }