aboutsummaryrefslogtreecommitdiff
path: root/src/util.rs
diff options
context:
space:
mode:
authorDaniel García <[email protected]>2021-04-27 23:18:32 +0200
committerDaniel García <[email protected]>2021-04-27 23:18:32 +0200
commit34ea10475d316ccb2ca4cd2cac67b61c4cdfb62a (patch)
tree46ffe3a1f6da45ec860112f583a1961fd2c537d9 /src/util.rs
parentced7f1771acd9696c7da8adb4bd6044d51abf7c6 (diff)
downloadvaultwarden-34ea10475d316ccb2ca4cd2cac67b61c4cdfb62a.tar.gz
vaultwarden-34ea10475d316ccb2ca4cd2cac67b61c4cdfb62a.zip
Project renaming
Diffstat (limited to 'src/util.rs')
-rw-r--r--src/util.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.rs b/src/util.rs
index 83930cbf..b33f5890 100644
--- a/src/util.rs
+++ b/src/util.rs
@@ -534,6 +534,6 @@ pub fn get_reqwest_client() -> Client {
pub fn get_reqwest_client_builder() -> ClientBuilder {
let mut headers = header::HeaderMap::new();
- headers.insert(header::USER_AGENT, header::HeaderValue::from_static("Bitwarden_RS"));
+ headers.insert(header::USER_AGENT, header::HeaderValue::from_static("Vaultwarden"));
Client::builder().default_headers(headers).timeout(Duration::from_secs(10))
}