From 423fe3fd4fd393a3d63009d06dd864f42e2e1a39 Mon Sep 17 00:00:00 2001 From: Yaroslav Gurov <31506978+ygurov@users.noreply.github.com> Date: Thu, 22 Jan 2026 11:03:36 +0100 Subject: [PATCH] fix: remove redundant gateway from xrayprotocol (#2147) --- client/vpnconnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/vpnconnection.cpp b/client/vpnconnection.cpp index c41ef0c6..afe47840 100644 --- a/client/vpnconnection.cpp +++ b/client/vpnconnection.cpp @@ -499,7 +499,7 @@ bool VpnConnection::startNetworkCheckIfReady() return IpcClient::withInterface([&](QSharedPointer iface) { QRemoteObjectPendingReply reply = iface->startNetworkCheck(gateway, localAddress); - return reply.waitForFinished() && reply.returnValue(); + return reply.waitForFinished(1000) && reply.returnValue(); }); #else return false;