mirror of
https://git.suyu.dev/suyu/discord-rpc.git
synced 2025-12-22 13:56:38 +01:00
Flatten the condition to get rid of empty branch (#247)
This commit is contained in:
parent
d63ed30966
commit
ac2d064cb0
1 changed files with 2 additions and 6 deletions
|
|
@ -26,13 +26,9 @@ void RpcConnection::Open()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (state == State::Disconnected) {
|
if (state == State::Disconnected && !connection->Open()) {
|
||||||
if (connection->Open()) {
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (state == State::SentHandshake) {
|
if (state == State::SentHandshake) {
|
||||||
JsonDocument message;
|
JsonDocument message;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue