summaryrefslogtreecommitdiff
path: root/src/api/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/mod.rs')
-rw-r--r--src/api/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/mod.rs b/src/api/mod.rs
index d9eaef2..6554553 100644
--- a/src/api/mod.rs
+++ b/src/api/mod.rs
@@ -11,7 +11,7 @@ pub static USER_AGENT: Lazy<String> = Lazy::new(|| {
pub static REQWEST_CLIENT: Lazy<reqwest::Client> = Lazy::new(|| {
reqwest::Client::builder()
- .user_agent(format!("{:#?}", USER_AGENT))
+ .user_agent(USER_AGENT.to_string())
.build()
.unwrap_or_default()
});