[FIX] Исправлена проблема с settings.bin

This commit is contained in:
Gravit 2019-02-23 18:12:49 +07:00
parent b9aeacc38b
commit 637652c1c6
No known key found for this signature in database
GPG key ID: 061981E1E85D3216

View file

@ -113,6 +113,8 @@ public void read(HInput input) throws IOException, SignatureException {
int lastHDirsCount = input.readLength(0);
for (int i = 0; i < lastHDirsCount; i++) {
String name = IOHelper.verifyFileName(input.readString(255));
HashedDir hdir = new HashedDir(input);
lastHDirs.put(name,hdir);
}
}