fixed decryption of names

master
Marcus Gosselin 2014-11-16 06:32:20 -08:00
parent c624b3085c
commit 711d61535c
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ public class Item {
name = file.getName(); name = file.getName();
if(name.endsWith(".enc")) { 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")) { } else if (path.equals("\\drives")) {