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 24, 2024
1 parent d011e4b commit 1fb67ac
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 1fb67ac

Please sign in to comment.