From 885e40d2a206ea8591ee6af0f683b79595d5ebb3 Mon Sep 17 00:00:00 2001 From: Shautvast Date: Tue, 31 Mar 2026 11:55:49 +0200 Subject: [PATCH] no decompress in martin call --- backend/src/services/martin.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/services/martin.rs b/backend/src/services/martin.rs index 2129066..881761e 100644 --- a/backend/src/services/martin.rs +++ b/backend/src/services/martin.rs @@ -13,6 +13,7 @@ impl MartinService { Self { client: reqwest::Client::builder() .timeout(std::time::Duration::from_secs(10)) + .no_gzip() // Don't decompress; vector_map_tiles expects gzip-compressed MVT .build() .expect("Failed to build HTTP client"), base_url: config.martin_url.clone(),