Disable re-unlocking functionality for Spec B

This commit is contained in:
Gustave Monce
2020-01-12 15:46:40 +01:00
parent 774ff9956f
commit f6ad0c98b7
+3 -1
View File
@@ -210,7 +210,9 @@ namespace WPinternals
GPT GPT = FlashModel.ReadGPT(); GPT GPT = FlashModel.ReadGPT();
if ((GPT.GetPartition("IS_UNLOCKED") != null) || (GPT.GetPartition("BACKUP_EFIESP") != null)) if ((GPT.GetPartition("IS_UNLOCKED") != null) || (GPT.GetPartition("BACKUP_EFIESP") != null))
{ {
AlreadyUnlocked = true; ExitMessage("Phone is already unlocked", null);
return;
//AlreadyUnlocked = true;
} }
} }