From 90b64c172125ce6788a9615c45643f2d33e5470a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Mon, 8 Nov 2021 13:28:09 +0100 Subject: [PATCH] Changed parameter _USERNAME_ for _USER_ on URL Transport (as in tooltip) --- server/src/uds/transports/URL/url_custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/uds/transports/URL/url_custom.py b/server/src/uds/transports/URL/url_custom.py index 05ac5a3b..f75e1807 100644 --- a/server/src/uds/transports/URL/url_custom.py +++ b/server/src/uds/transports/URL/url_custom.py @@ -120,7 +120,7 @@ class URLCustomTransport(transports.Transport): username: str = user.getUsernameForAuth() username, password = userService.processUserPassword(username, password) - url = self.urlPattern.value.replace('_IP_', ip).replace('_USERNAME_', username) + url = self.urlPattern.value.replace('_IP_', ip).replace('_USER_', username) onw = ( '&o_n_w={}'.format(hash(transport.name))