was fine locally though?
This commit is contained in:
llama 2025-07-19 09:00:33 +08:00
parent 964ac1e1bf
commit f9c8e65f64
No known key found for this signature in database
GPG key ID: 0B7543854B9413C3

View file

@ -33,7 +33,8 @@ fn component_to_regex(component: &str) -> Result<Regex> {
Regex::new(&format!("(?i){}", regex::escape(component))).map_err(Into::into)
}
/// Returns None if tag wasn't a match, otherwise whether it was a consecutive prefix match
/// Returns None if tag wasn't a match, otherwise whether it was a consecutive
/// prefix match
fn filters_match(filters: &[Regex], tag: &str) -> Option<bool> {
let mut remaining_tag_components = tag.split("::");
let mut is_prefix = true;