diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-07-09 01:10:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-09 01:10:59 +0200 |
commit | e6fe701727268a5c2284fec2867c0a9bfe10b1aa (patch) | |
tree | ce1097293bb6b5393fa1172a73cb2f13354c5234 /libraries/LocalPeer/src | |
parent | 35a698ef725bf250a5348bea8c47ff3470be7515 (diff) | |
parent | 9ec260619b48447e398445aecd6651d319b8217e (diff) | |
download | PrismLauncher-e6fe701727268a5c2284fec2867c0a9bfe10b1aa.tar.gz PrismLauncher-e6fe701727268a5c2284fec2867c0a9bfe10b1aa.tar.bz2 PrismLauncher-e6fe701727268a5c2284fec2867c0a9bfe10b1aa.zip |
Merge pull request #808 from Scrumplex/fix-lgtm-warnings
Diffstat (limited to 'libraries/LocalPeer/src')
-rw-r--r-- | libraries/LocalPeer/src/LocalPeer.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libraries/LocalPeer/src/LocalPeer.cpp b/libraries/LocalPeer/src/LocalPeer.cpp index cb218466..2c996ae7 100644 --- a/libraries/LocalPeer/src/LocalPeer.cpp +++ b/libraries/LocalPeer/src/LocalPeer.cpp @@ -162,15 +162,15 @@ bool LocalPeer::sendMessage(const QByteArray &message, int timeout) QLocalSocket socket; bool connOk = false; - for(int i = 0; i < 2; i++) { + int tries = 2; + for(int i = 0; i < tries; i++) { // Try twice, in case the other instance is just starting up socket.connectToServer(socketName); connOk = socket.waitForConnected(timeout/2); - if (connOk || i) + if (!connOk && i < (tries - 1)) { - break; + std::this_thread::sleep_for(std::chrono::milliseconds(250)); } - std::this_thread::sleep_for(std::chrono::milliseconds(250)); } if (!connOk) { |