feat: extract player DRM data
This commit is contained in:
parent
2b2b4af0b2
commit
2af4001c75
15 changed files with 673 additions and 128 deletions
|
|
@ -652,7 +652,7 @@ fn parse_netscape_cookie_line<'a>(
|
|||
if domain != filter_domain {
|
||||
return Ok(None);
|
||||
}
|
||||
let include_subdomains = cols.next().ok_or_else(mkerr)?.to_ascii_lowercase() == "true";
|
||||
let include_subdomains = cols.next().ok_or_else(mkerr)?.eq_ignore_ascii_case("true");
|
||||
if !include_subdomains {
|
||||
return Ok(None);
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue