feat: add default user agent

This commit is contained in:
GyDi 2022-04-12 01:05:51 +08:00
parent b34bd9ffd2
commit 8fa95d06e1

View File

@ -196,9 +196,8 @@ impl PrfItem {
if !with_proxy {
builder = builder.no_proxy();
}
if let Some(user_agent) = user_agent {
builder = builder.user_agent(user_agent);
}
builder = builder.user_agent(user_agent.unwrap_or("clash-verge/v0.1.0".into()));
let resp = builder.build()?.get(url).send().await?;
let header = resp.headers();