add a potential fix for uh thinger thinger thing thing hwid

This commit is contained in:
Jess H 2024-06-26 02:59:20 +01:00
parent e55ce809e7
commit 2342333697
Signed by: UnixSystemV
GPG key ID: 9B21C50B68D67F19

View file

@ -319,6 +319,13 @@ public class Loader implements Util {
FileReader fileReader = new FileReader(file);
BufferedReader reader = new BufferedReader(fileReader);
if(!key.decryptString(reader.readLine()).equals("baseband_login")) {
LOGGER.fatal("Login Data Checksum Not Matching!");
LOGGER.fatal("This usually only happens when your HWID changes,");
LOGGER.fatal("Rerun the Installer.");
exit();
}
tcn.set("username", key.decryptString(reader.readLine()));
tcn.set("password", key.decryptString(reader.readLine()));
tcn.set("hardware-id", getToken());