pythonlib: Fix geolocation domain detection #31 0.2.12

This commit is contained in:
daijro 2024-10-10 15:44:25 -05:00
parent a8e9ffaa64
commit 3e2551e65b
3 changed files with 3 additions and 2 deletions

View file

@ -412,7 +412,7 @@ def get_launch_options(
elif (
proxy
and 'localhost' not in proxy.get('server', '')
and not is_domain_set('geolocation', config)
and not is_domain_set(config, 'geolocation')
):
LeakWarning.warn('proxy_without_geoip')

View file

@ -1,5 +1,6 @@
rm -rf ./dist
rm -rf ./camoufox/*.mmdb
rm -rf ./camoufox/*.png
python -m build
twine check dist/*

View file

@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "camoufox"
version = "0.2.11"
version = "0.2.12"
description = "Wrapper around Playwright to help launch Camoufox"
authors = ["daijro <daijro.dev@gmail.com>"]
license = "MIT"