From f95f3430b9b24ac6ae2d3e81f33fc324613fed2e Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Wed, 8 Oct 2025 09:22:19 +0200 Subject: [PATCH] Update CommonClient.py --- CommonClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommonClient.py b/CommonClient.py index b6261a4145..41cc08d1d0 100644 --- a/CommonClient.py +++ b/CommonClient.py @@ -856,7 +856,7 @@ async def server_loop(ctx: CommonContext, address: typing.Optional[str] = None) server_url = urllib.parse.urlparse(address) if server_url.username: - ctx.auth = urllib.parse.unquote(server_url.username) + ctx.username = urllib.parse.unquote(server_url.username) if server_url.password: ctx.password = urllib.parse.unquote(server_url.password)