Fixed issue with not hashing files correctly

This commit is contained in:
nathan 2017-09-28 22:03:18 +02:00
parent 229e83bd4e
commit c408bbb2a1
1 changed files with 1 additions and 0 deletions

View File

@ -199,6 +199,7 @@ class Hash {
File file = new File(name);
if (file.isFile() && file.canRead()) {
found = true;
bytesRead = 0;
FileInputStream inputStream = null;
try {