mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-23 00:51:01 +03:00
[FIX] Дополнительное логгирование в verifyHDir
This commit is contained in:
parent
b1fe3cf2a9
commit
24a453f338
1 changed files with 4 additions and 4 deletions
|
@ -545,12 +545,12 @@ public static void verifyHDir(Path dir, HashedDir hdir, FileNameMatcher matcher,
|
||||||
{
|
{
|
||||||
AtomicBoolean isFoundFile = new AtomicBoolean(false);
|
AtomicBoolean isFoundFile = new AtomicBoolean(false);
|
||||||
diff.extra.walk(File.separator, (e,k,v) -> {
|
diff.extra.walk(File.separator, (e,k,v) -> {
|
||||||
if(v.getType().equals(HashedEntry.Type.FILE)) isFoundFile.set(true);
|
if(v.getType().equals(HashedEntry.Type.FILE)) { LogHelper.error("Extra file %s", e); isFoundFile.set(true); }
|
||||||
LogHelper.error("Extra %s", e);
|
else LogHelper.error("Extra %s", e);
|
||||||
});
|
});
|
||||||
diff.mismatch.walk(File.separator, (e,k,v) -> {
|
diff.mismatch.walk(File.separator, (e,k,v) -> {
|
||||||
if(v.getType().equals(HashedEntry.Type.FILE)) isFoundFile.set(true);
|
if(v.getType().equals(HashedEntry.Type.FILE)) { LogHelper.error("Mismatch file %s", e); isFoundFile.set(true); }
|
||||||
LogHelper.error("Mismatch %s", e);
|
else LogHelper.error("Mismatch %s", e);
|
||||||
});
|
});
|
||||||
if(isFoundFile.get()) throw new SecurityException(String.format("Forbidden modification: '%s'", IOHelper.getFileName(dir)));
|
if(isFoundFile.get()) throw new SecurityException(String.format("Forbidden modification: '%s'", IOHelper.getFileName(dir)));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue