Fix disconnectedFromServer not emitting in NetWebSocketConnection (#973)

This commit is contained in:
Leifa 2024-05-26 20:40:52 +02:00 committed by GitHub
parent 4c56a25463
commit 4ec2a2efbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,7 +73,7 @@ void NetWebSocketConnection::onStateChanged(QAbstractSocket::SocketState state)
break;
case QAbstractSocket::UnconnectedState:
Q_EMIT disconnectFromServer();
Q_EMIT disconnectedFromServer();
break;
}
}