From 4cc63bac1ccb7f47837af2e97a1e183a94d2e7ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogdan-=C8=98tefan=20Neac=C5=9Fu?= Date: Tue, 13 Feb 2024 12:06:10 +0200 Subject: [PATCH] Fix Box ws_fd --- common/client-core/src/client/mix_traffic/transceiver.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/client-core/src/client/mix_traffic/transceiver.rs b/common/client-core/src/client/mix_traffic/transceiver.rs index b2fc3053e5..267d185f60 100644 --- a/common/client-core/src/client/mix_traffic/transceiver.rs +++ b/common/client-core/src/client/mix_traffic/transceiver.rs @@ -69,7 +69,7 @@ impl GatewayTransceiver for Box { (**self).gateway_identity() } fn ws_fd(&self) -> Option { - None + (**self).ws_fd() } }