Extra private browser

main
bashrc 2026-03-01 12:46:11 +00:00
parent da1633562f
commit c14436f5ec
1 changed files with 2 additions and 1 deletions

View File

@ -4336,6 +4336,7 @@ def is_private_browser(ua_str: str) -> bool:
for privacy?
"""
ua_str_lower = ua_str.lower()
if 'privacy' in ua_str_lower or 'private' in ua_str_lower:
if string_contains(ua_str_lower,
('librewolf', 'privacy', 'private')):
return True
return False