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
Copy file name to clipboardExpand all lines: README.md
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,6 @@ If you have an antivirus, select "Always Allow" for anything related to tsscheck
14
14
Please send feedback via [Github Issue](https://github.com/airsquared/blobsaver/issues/new) or [Reddit PM](https://www.reddit.com//message/compose?to=01110101_00101111&subject=Blobsaver+Feedback) if you encounter any bugs/problems or have a feature request.
Alertalert = newAlert(Alert.AlertType.ERROR, "There was an error getting the tsschecker log.\n\nPlease create a new issue on Github or PM me on Reddit. The crash log has been copied to your clipboard", githubIssue, redditPM, ButtonType.CANCEL);
if (tsscheckerLog.contains("[Error] [TSSC] ERROR: could not get url for device " + device + " on iOS " + versionField.getText())) {
379
+
Alertalert = newAlert(Alert.AlertType.ERROR,
380
+
"Could not find device \"" + device + "\" on iOS/tvOS " + versionField.getText() +
381
+
"\n\nThe version probably doesn't exist or isn't compatible with the device", ButtonType.OK);
382
+
alert.showAndWait();
383
+
resultShown = true;
384
+
}
385
+
if (tsscheckerLog.contains("[Error] [TSSC] manually specified apnonce=" + apnonceField.getText() + ", but parsing failed")) {
386
+
Alertalert = newAlert(Alert.AlertType.ERROR,
387
+
"\"" + apnonceField.getText() + "\" is not a valid apnonce", ButtonType.OK);
388
+
alert.showAndWait();
389
+
resultShown = true;
390
+
}
391
+
if (tsscheckerLog.contains("[WARNING] [TSSC] could not get id0 for installType=Erase. Using fallback installType=Update since user did not specify installType manually")
392
+
&& tsscheckerLog.contains("[Error] [TSSR] Error: could not get id0 for installType=Update")
393
+
&& tsscheckerLog.contains("[Error] [TSSR] faild to build tssrequest")
394
+
&& tsscheckerLog.contains("Error] [TSSC] checking tss status failed!")) {
395
+
Alertalert = newAlert(Alert.AlertType.ERROR,
396
+
"Saving blobs failed. Check the board configuration.\n\nIf this doesn't work, please create a new issue on Github or PM me on Reddit. The log has been copied to your clipboard.",
if (tsscheckerLog.contains("[Error] ERROR: TSS request failed: Could not resolve host:")) {
414
+
Alertalert = newAlert(Alert.AlertType.ERROR,
415
+
"Saving blobs failed. Check your internet connection.\n\nIf your internet is working and you can connect to apple.com(in your broweser), please create a new issue on Github or PM me on Reddit. The log has been copied to your clipboard.",
if (tsscheckerLog.contains("[Error]") && !resultShown) {
433
+
Alertalert = newAlert(Alert.AlertType.ERROR,
434
+
"Saving blobs failed. Check your internet connection.\n\nPlease create a new issue on Github or PM me on Reddit. The log has been copied to your clipboard.",
0 commit comments