Fixed reversed arguments to container open link

This commit is contained in:
Ezri Brimhall 2025-06-24 09:21:08 -06:00
parent cebff23bd6
commit d3b39effd7
Signed by: ezri
GPG Key ID: 058A78E5680C6F24

View File

@ -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