mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 21:12:04 -08:00
pythonlib: Fix geolocation domain detection #31 0.2.12
This commit is contained in:
parent
a8e9ffaa64
commit
3e2551e65b
3 changed files with 3 additions and 2 deletions
|
|
@ -412,7 +412,7 @@ def get_launch_options(
|
||||||
elif (
|
elif (
|
||||||
proxy
|
proxy
|
||||||
and 'localhost' not in proxy.get('server', '')
|
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')
|
LeakWarning.warn('proxy_without_geoip')
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
rm -rf ./dist
|
rm -rf ./dist
|
||||||
rm -rf ./camoufox/*.mmdb
|
rm -rf ./camoufox/*.mmdb
|
||||||
|
rm -rf ./camoufox/*.png
|
||||||
|
|
||||||
python -m build
|
python -m build
|
||||||
twine check dist/*
|
twine check dist/*
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "camoufox"
|
name = "camoufox"
|
||||||
version = "0.2.11"
|
version = "0.2.12"
|
||||||
description = "Wrapper around Playwright to help launch Camoufox"
|
description = "Wrapper around Playwright to help launch Camoufox"
|
||||||
authors = ["daijro <daijro.dev@gmail.com>"]
|
authors = ["daijro <daijro.dev@gmail.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue