Merge pull request #2321 from calvinchd/hyprland-runtime-err

This commit is contained in:
Alexis Rouillard 2023-07-16 15:10:03 +02:00 committed by GitHub
commit 85b4ff4f81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,7 +192,7 @@ std::string IPC::getSocket1Reply(const std::string& rq) {
return "";
}
response.append(buffer, sizeWritten);
} while (sizeWritten == 8192);
} while (sizeWritten > 0);
close(SERVERSOCKET);
return response;