fixed decryption of names
parent
c624b3085c
commit
711d61535c
|
|
@ -135,7 +135,7 @@ public class Item {
|
|||
|
||||
name = file.getName();
|
||||
if(name.endsWith(".enc")) {
|
||||
name = Viewer.encryptor.decryptName(name.substring(0, name.length() - 4));
|
||||
name = Viewer.encryptor.nameTable.decrypt(name.substring(0, name.length() - 4));
|
||||
}
|
||||
} else if (path.equals("\\drives")) {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue