From b084c4c284ababf7590cb7f4efca1b7e731cd821 Mon Sep 17 00:00:00 2001 From: Yaroslav Gurov <31506978+ygurov@users.noreply.github.com> Date: Mon, 23 Feb 2026 11:00:13 +0100 Subject: [PATCH] fix: ios connection status stuck (#2263) --- client/vpnconnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/vpnconnection.cpp b/client/vpnconnection.cpp index d249fae6e..3997ed02c 100644 --- a/client/vpnconnection.cpp +++ b/client/vpnconnection.cpp @@ -39,7 +39,7 @@ VpnConnection::VpnConnection(std::shared_ptr settings, QObject *parent { #if defined(Q_OS_IOS) || defined(MACOS_NE) m_checkTimer.setInterval(1000); - connect(IosController::Instance(), &IosController::connectionStateChanged, this, &VpnConnection::onConnectionStateChanged); + connect(IosController::Instance(), &IosController::connectionStateChanged, this, &VpnConnection::setConnectionState); connect(IosController::Instance(), &IosController::bytesChanged, this, &VpnConnection::onBytesChanged); #endif }