From d3b39effd7c97d66adfadde2662b97534a24e114 Mon Sep 17 00:00:00 2001 From: Ezri Brimhall Date: Tue, 24 Jun 2025 09:21:08 -0600 Subject: [PATCH] Fixed reversed arguments to container open link --- src/vpn_manager_globalprotect/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vpn_manager_globalprotect/agent.py b/src/vpn_manager_globalprotect/agent.py index 2051d6e..2048b13 100644 --- a/src/vpn_manager_globalprotect/agent.py +++ b/src/vpn_manager_globalprotect/agent.py @@ -42,7 +42,7 @@ class GlobalProtectSamlAuthenticator: raise AuthenticationInProgress() if options.signature == "(ss)": - target = f"ext+container:name={urllib.parse.quote_plus(options.value[0])}&url={urllib.parse.quote_plus(options.value[1])}" + target = f"ext+container:name={urllib.parse.quote_plus(options.value[1])}&url={urllib.parse.quote_plus(options.value[0])}" else: target = options.value