Fix the Aegis database importer

This commit is contained in:
Alexander Bakker 2018-02-14 22:09:02 +01:00
parent 990acd36a6
commit b89927bb3e

View file

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