From de11f28e2f8c7869ba8ac85b90596c94ae4b2acc Mon Sep 17 00:00:00 2001 From: Sulkta Date: Tue, 26 May 2026 22:33:47 -0700 Subject: [PATCH] Fixup: restore ContentCountry import in parsing.rs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit android_user_agent / ios_user_agent still take &ContentCountry — the previous commit over-pruned the imports when it dropped bootstrap_visitor_data. --- src/youtube/parsing.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/youtube/parsing.rs b/src/youtube/parsing.rs index e0d1c99..6f6aaf1 100644 --- a/src/youtube/parsing.rs +++ b/src/youtube/parsing.rs @@ -10,6 +10,7 @@ use once_cell::sync::Lazy; use parking_lot::RwLock; +use crate::localization::ContentCountry; use crate::youtube::constants::*; static CONSENT_ACCEPTED: Lazy> = Lazy::new(|| RwLock::new(false));