diff options
Diffstat (limited to 'import/src/trakt.rs')
-rw-r--r-- | import/src/trakt.rs | 5 |
1 files changed, 5 insertions, 0 deletions
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 <metamuffin.org> */ +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(); |