Fix the Aegis database importer

pull/41/head
Alexander Bakker 8 years ago
parent 990acd36a6
commit b89927bb3e

@ -19,7 +19,7 @@ public class AegisImporter extends DatabaseImporter {
DatabaseFile file = new DatabaseFile(); DatabaseFile file = new DatabaseFile();
file.deserialize(bytes); file.deserialize(bytes);
Database db = new Database(); Database db = new Database();
db.deserialize(file.getContent()); db.deserialize(file.getContent(), false);
return db.getKeys(); return db.getKeys();
} }

Loading…
Cancel
Save