mirror of
https://github.com/Maschell/fuse-wiiu.git
synced 2024-11-21 22:29:15 +01:00
Fix search for the title key
This commit is contained in:
parent
0af70ed3a4
commit
606d4485c8
@ -13,14 +13,14 @@ public class TicketUtils {
|
||||
File ticketFile = FileUtils.getFileIgnoringFilenameCases(folder.getAbsolutePath(), "title.tik");
|
||||
|
||||
Ticket ticket = null;
|
||||
if (ticketFile.exists()) {
|
||||
if (ticketFile != null && ticketFile.exists()) {
|
||||
try {
|
||||
ticket = Ticket.parseTicket(ticketFile, commonKey);
|
||||
} catch (IOException e) {
|
||||
}
|
||||
}
|
||||
if (ticket == null && keyFolder != null) {
|
||||
File keyFile = FileUtils.getFileIgnoringFilenameCases(folder.getAbsolutePath(), String.format("%016X", titleID) + ".key");
|
||||
File keyFile = FileUtils.getFileIgnoringFilenameCases(keyFolder.getAbsolutePath(), String.format("%016X", titleID) + ".key");
|
||||
if (keyFile.exists()) {
|
||||
byte[] key;
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user