Fix missing decompession when reading tile-files

This commit is contained in:
Blue (Lukas Rieger) 2021-11-06 17:12:21 +01:00
parent 13944404e1
commit 4e05ad444b
No known key found for this signature in database
GPG Key ID: 904C4995F9E1F800
1 changed files with 1 additions and 0 deletions

View File

@ -73,6 +73,7 @@ public class FileStorage extends Storage {
InputStream is = Files.newInputStream(file, StandardOpenOption.READ);
is = new BufferedInputStream(is);
is = compression.decompress(is);
return Optional.of(is);
}