fixed proxy signature in authentication call

This commit is contained in:
mikhail 2025-03-01 22:22:59 -05:00
parent 8bb438fce0
commit 0899185d03

@ -90,9 +90,7 @@ with Path("proxies").open("w", encoding="utf-8") as proxy_file:
get_access_proxy_token_payload: dict[str, str | dict[str, str]] = {
"clientApp": {"name": "URBAN_VPN_BROWSER_EXTENSION"},
"signature": next(
(host.signature for host in hosts if len(host.signature) > 0), ""
),
"signature": host.signature,
"type": "accs",
}