mirror of
https://github.com/yuzu-emu/discord-rpc
synced 2024-11-22 12:33:38 +00: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;
|
||||
}
|
||||
|
||||
if (state == State::Disconnected) {
|
||||
if (connection->Open()) {
|
||||
}
|
||||
else {
|
||||
if (state == State::Disconnected && !connection->Open()) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (state == State::SentHandshake) {
|
||||
JsonDocument message;
|
||||
|
|
Loading…
Reference in a new issue