added more information to the httpclient

Dieser Commit ist enthalten in:
Sebastian Tobie 2025-06-19 10:08:23 +02:00
Ursprung 0080f592c0
Commit 125f8f814f

Datei anzeigen

@ -89,6 +89,8 @@ fn default_client() -> Result<reqwest::Client, Error> {
.min_tls_version(Version::TLS_1_2)
.https_only(true)
.pool_max_idle_per_host(POOL_SIZE)
.connection_verbose(true)
.referer(true)
.build()
.map_err(Error::from_display)
}