From 960007b06e2b47d41f88365c26f043f61c817f08 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Wed, 23 Apr 2025 13:58:03 +0200 Subject: import: send user-agent header to all apis --- import/src/trakt.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'import/src/trakt.rs') diff --git a/import/src/trakt.rs b/import/src/trakt.rs index 2f8618d..86f2f42 100644 --- a/import/src/trakt.rs +++ b/import/src/trakt.rs @@ -3,6 +3,7 @@ which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2025 metamuffin */ +use crate::USER_AGENT; use anyhow::Context; use bincode::{Decode, Encode}; use jellybase::{ @@ -37,6 +38,10 @@ impl Trakt { HeaderName::from_static("content-type"), HeaderValue::from_static("application/json"), ), + ( + HeaderName::from_static("user-agent"), + HeaderValue::from_static(USER_AGENT), + ), ])) .build() .unwrap(); -- cgit v1.2.3-70-g09d2