From 0899185d0366b60fb4b8a1ea2cff50a75fcd5c79 Mon Sep 17 00:00:00 2001 From: mikhail Date: Sat, 1 Mar 2025 22:22:59 -0500 Subject: [PATCH] fixed proxy signature in authentication call --- main.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/main.py b/main.py index c280560..0092981 100644 --- a/main.py +++ b/main.py @@ -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", }