Skip to content

Commit

Permalink
fix: remove red herring log entry from integrations
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyTWF committed Dec 10, 2023
1 parent ddf77a2 commit 037adc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin/integration/IntegrationServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ namespace UKControllerPlugin::Integration {
while (this->acceptingConnections) {
SOCKET integrationSocket = accept(this->serverSocket, nullptr, nullptr);
if (integrationSocket == INVALID_SOCKET) {
if (!this->acceptingConnections) {
if (this->acceptingConnections) {
LogError("Failed to accept integration server connection: " + std::to_string(WSAGetLastError()));
}
closesocket(integrationSocket);
Expand Down

0 comments on commit 037adc6

Please sign in to comment.