fix wrong decompression logic

This commit is contained in:
Chris Lu 2020-08-01 11:18:34 -07:00
parent 49199c69d4
commit 8cc35e2c13

View file

@ -97,7 +97,7 @@ public class SeaweedRead {
}
if (chunkView.isCompressed) {
data = Gzip.decompress(data);
// data = Gzip.decompress(data);
}
if (chunkView.cipherKey != null && chunkView.cipherKey.length != 0) {