From 129268882791d6b26cad9b966d37d5bc88fc98ed Mon Sep 17 00:00:00 2001 From: Kayos 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));