You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
} elseif (tsscheckerLog.contains("[Error] [Error] can't save shsh at " + pathField.getText())) {
421
423
newUnreportableError("\'" + pathField.getText() + "\' is not a valid path\n\nIf this was done to test whether the preset works in the background, please cancel that preset, fix the error, and try again.");
422
424
pathField.setEffect(errorBorder);
423
-
} elseif (tsscheckerLog.contains("iOS " + versionField.getText() + " for device " + device + " IS NOT being signed!")) {
425
+
} elseif (tsscheckerLog.contains("iOS " + versionField.getText() + " for device " + device + " IS NOT being signed!") || tsscheckerLog.contains("Build " + buildIDField.getText() + " for device iPhone9,2 IS NOT being signed!")) {
424
426
newUnreportableError("iOS/tvOS " + versionField.getText() + " is not being signed for device " + device);
425
427
versionField.setEffect(errorBorder);
428
+
if (betaCheckBox.isSelected()) {
429
+
buildIDField.setEffect(errorBorder);
430
+
ipswField.setEffect(errorBorder);
431
+
}
426
432
} elseif (tsscheckerLog.contains("[Error] [TSSC] failed to load manifest")) {
427
433
Alertalert = newAlert(Alert.AlertType.ERROR,
428
434
"Failed to load manifest.\n\n\"" + ipswField.getText() + "\" might not be a valid URL.\n\nMake sure it starts with \"http://\" or \"https://\", has \"apple\" in it, and ends with \".ipsw\"\n\nIf the URL is fine, please create a new issue on Github or PM me on Reddit. The log has been copied to your clipboard",
429
435
githubIssue, redditPM, ButtonType.OK);
430
436
resizeAlertButtons(alert);
431
437
alert.showAndWait();
432
438
reportError(alert, tsscheckerLog);
439
+
} elseif (tsscheckerLog.contains("[Error] [TSSC] selected device can't be used with that buildmanifest")) {
440
+
newUnreportableError("Device and build manifest don't match.");
433
441
} elseif (tsscheckerLog.contains("[Error]")) {
434
442
newReportableError("Saving blobs failed.\n\nIf this was done to test whether the preset works in the background, please cancel that preset, fix the error, and try again.", tsscheckerLog);
0 commit comments