Skip to content

Commit

Permalink
fix(lapis2): prefer zstd over gzip #738
Browse files Browse the repository at this point in the history
  • Loading branch information
fengelniederhammer committed Apr 17, 2024
1 parent 9c1fedb commit bced996
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ enum class Compression(
.map { it.trim() }

return when {
headersList.contains(GZIP.value) -> GZIP
headersList.contains(ZSTD.value) -> ZSTD
headersList.contains(GZIP.value) -> GZIP
else -> null
}
}
Expand Down

0 comments on commit bced996

Please sign in to comment.