fix typo with reqwest builder for disabling zstd

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-08-30 12:26:47 -04:00
parent 9fde835673
commit 119cc2eec0

View file

@ -120,7 +120,7 @@ fn base(config: &Config) -> Result<reqwest::ClientBuilder> {
builder = if config.zstd_compression {
builder.zstd(true)
} else {
builder.zstd(false).no_brotli()
builder.zstd(false).no_zstd()
};
};