From e81f0a973d2664e2ab64fe9e5502462b1b9f1391 Mon Sep 17 00:00:00 2001 From: Flowseal Date: Wed, 8 Jul 2026 00:43:13 +0300 Subject: [PATCH] fixes #1113 --- proxy/tg_ws_proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/tg_ws_proxy.py b/proxy/tg_ws_proxy.py index 59c9b4d..85846bc 100644 --- a/proxy/tg_ws_proxy.py +++ b/proxy/tg_ws_proxy.py @@ -344,7 +344,7 @@ async def _handle_client(reader, writer, secret: bytes): ws_timed_out = False all_redirects = True - ws = await ws_pool.get(dc, is_media, target, domains, path=ws_path) if not is_test_dc else None + ws = await ws_pool.get(dc, is_media, target, domains) if not is_test_dc else None if ws: log.info("[%s] DC%d%s -> pool hit via %s", label, dc, media_tag, target)